The official VLC tvOS app on the App Store seems to play VOB files fine. Does this mean the latest source has bug? BTW, how do I know which revision in the master branch correspond to the version released to the App Store?
My code:
Code: Select all
override func viewDidAppear(animated: Bool) {
let url = NSURL(string: "http://f.tkaraoke.com/HL/BHCA.vob");
let media = VLCMedia(URL: url!);
m_mediaPlayer.media = media;
m_mediaPlayer.drawable = self.m_movieView;
m_mediaPlayer.play();
}