我使用 MobileVLCKit 框架在 iOS 中实现了 MobileVLCKit 。我有一个问题,
当我声明播放器@Interface 时,流和语音运行良好。
#import <MobileVLCKit/MobileVLCKit.h>
@interface ViewController ()<VLCMediaPlayerDelegate>{
VLCMediaPlayer *vlcPlayer1
}
@end
但是,在本地函数中声明 VLCMediaPlayer 对象,视频预览不显示,但音频 id 正在播放。
- (void)viewDidLoad {
[super viewDidLoad];
VLCMediaPlayer *vlcPlayer1 = [[VLCMediaPlayer alloc] initWithOptions:nil];
vlcPlayer1.drawable = view;
media = [VLCMedia mediaWithURL:[NSURL URLWithString: UrlString]];
[vlcPlayer1 setMedia:media];
[vlcPlayer1 play];
}
我该如何解决这个问题。因为,我需要动态创建 View 。
Best Answer-推荐答案 strong>
试试这个:
[vlcplayer.media addOptions{ @"network-caching" : @300}];
如果不起作用,请将 300 替换为更大的值。
这可能行得通。
关于ios - MobileVLCKit 播放视频流不显示,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34928036/
|