I\'m using AVPlayer to show a live stream. Works fine. Part of my app requires a modal view to appear over the video. Actually, it flips the video view to show the modal view. I want the video\'s audi
I am using a subclass of AVQueuePlayer and when I add new AVPlayerItem with a streaming URL the app freezes for about a second or two. By freezing I mean that it doesn\'t respond to touches on the UI.
My app need to take some screenshot when a video is being played on the screen. The video is played by AVPlayer and AVPlayerLayer. The problem when I try to use old methods, such as:
I\'m searching for a way to get notified the exact moment when AVPlayer starts playing. There\'s the \"rate\" property, but currently I am checking it periodically with an NSTimer to get updates.
I am using AVPlayer for playing song from iPod Library. There are very limited methods in AVPlayer compare to AVAudioPlayer.
I have an audio player that I\'m building using AVPlayer. Currently, I keep the player instance around and when I need to swap tracks (either from a manual selection or the track has reached the end)
How can I start next song immediately with AVPlayer? I have 开发者_如何学编程collections of song selected from iPod Library in MPMediaItemCollection.
I am using AVPlayer to play a live stream from the Internet using the following code : NSString *u = @\"http://192.192.192.192:8036\";
According to the Apple documentation, the \'asset\' property of an AVPlayerItem should be available and return a valid object in iOS 4.0 onward. I have found that in iOS 4.2 that the \'asset\' propert
I am trying to set a UISlider\'s Value to a AVPlayer\'s Current Time. I am trying to use this code audioPlayer.currentTime = nowPlayingSlider.value;