我正在尝试使用 VLC 播放 youtube 在线视频IOS5
。我将 a 设置NSURL
为MVLCMovieViewController
,使用如下代码:
NSString *conntentURL = @"http://www.youtube.com/watch?v=FWKYriGgmCo";//(it's a workable link)
NSURL *url = [NSURL URLWithString:connectURL];
MVLCMovieViewController *movieViewController = [[MVLCMovieViewController alloc] init];
movieViewController.url = url;
[self presentModalViewController:movieViewController animated:YES];
[movieViewController release];
运行该应用程序,但我在 http.c 文件处停了下来,并在代码附近提示“程序收到信号”EXC_BAD_ACCESS“”:
p_sys->psz_user_agent = var_InheritString(p_access, "http-user-agent");
for(char *p = p_sys->psz_user_agent; *p, p++)
那么是否VLC
支持在线播放?或者应该修改什么,以便我可以直接在 ios 上播放 url?
非常感谢您提前提供的帮助!