【发布时间】:2013-04-04 14:31:22
【问题描述】:
我正在尝试使用 VLC 播放 IOS5 的 youtube 在线视频。
我将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?
非常感谢您提前提供的帮助!
【问题讨论】: