Is there a relatively easy way of looping a video in AVFoundation? I\'ve created my AVPlayer and AVPlayerLayer like so:
When a user double clicks the home button and swipe r开发者_高级运维ight, some audio controls shows.
No matter what I do I seem to run into problems. I\'m trying to create a fade over time on an actively playing streamed audio. So far the only players that seem to handle audio streaming properly are
After adding an audio track (recorded with AVAudioRecorder) to a composition AVPlayer will not play it. AVPlayer.status = 1 and AVPlayer.error = null.
Problem: Trying to create a Mix that is applied to the AVPlayerItem, but it crashes with ECX_BAD_ACCESS the moment it hits setVolumeRampFromStartVolume:
I have a problem with the AVPlayer playing in background mode, like a lot of people here and everywhere on the web. I\'ve done what I think is supposed to work, but is still doesn\'t... I think my pro
I have a simple video editing开发者_开发问答 view that uses AVPlayer. I create a AVMutableComposition using one or several AVURLAsset. All works fine but the videos are always rotated 90 degrees. i.e.
I\'ve been trying to use two different AVQueuePlayer objects within my app. The first player plays a series of short video clips streamed over the net. The second object plays only one video, but it i
I\'m using AVQueuePlayer to play a couple of streams in order. But often the AVQueuePlayer decides to skip to the next song without sending AVPlayerItemDidPlayToEndTimeNotification. Al开发者_如何学Gos
I\'m replicating an MPMediaPlayerView using AVPlayer so I can add some functionality to it. I\'ve created an UIView with play/pause and I display it on a touch and then set a timer to hide it as 开发者