我想在VLCPlayer中播放RTMP URL,但它不起作用

时间:2018-05-24 07:34:07

标签: ios objective-c iphone vlc

- (void)viewDidLoad
{
    [super viewDidLoad];

  VLCVideoView  *videoView = [[VLCVideoView alloc] initWithFrame:[[window contentView] bounds]];
    [[window contentView] addSubview:videoView];
    [videoView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];

    // Init the player object
  VLCMediaPlayer *player = [[VLCMediaPlayer alloc] initWithVideoView:videoView];

    [player setMedia:[VLCMedia mediaWithPath:@"rtmp://192.168.100.15:1935/vod"]];
    [player play];
}

我想在VLCPlayer中播放 RTMP 网址,但它无效。我尝试过很多SDK但还没有解决方案。

0 个答案:

没有答案