The avplayer tag has no wiki summary.
9
votes
2answers
770 views
How to play movie files with no file extension on iOS with MPMoviePlayerController or AVPlayer?
I want to play a movie in iOS 4.3 on the iPad. I've successfully used MPMoviePlayerController and AVPlayer to load files from a remote URL when the filename has a file extension. However, when I use a ...
6
votes
3answers
212 views
Responding to MPMoviePlayerController notifications during background media playback
I have an app that streams video from the net and plays it using an MPMoviePlayerController object for playback on the device or via AirPlay.
The app supports background operation and has the 'audio' ...
6
votes
2answers
391 views
Play video using AVPlayer
I am getting frame buffer one by one from video file using AVAssetReader and doing some operation on the frame and then saving new frame to temp file using AVAssetWritter.Now I have temp file path ...
6
votes
1answer
721 views
Yet another AVPlayer streaming audio in background problem
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 ...
6
votes
1answer
2k views
iPhone ios4 - Replacing iPod dock icon whilst playing background audio stream
I've figured out how I can get audio playing in the background on ios4, however I've noticed that some apps also replace the iPod dock icon with their own app icon. (Last.fm & Spotify for ...
5
votes
1answer
274 views
Inserting an HTTP stream into a AVMutableComposition
I am trying to insert an AVURLAsset of a AVPlayerItem that states AVPlayerItemStatusReadyToPlay into an AVMutableComposition like this:
composition_ = [[AVMutableComposition alloc] init];
...
4
votes
2answers
206 views
Setting videoGravity to AVLayerVideoGravityResizeAspectFill has no effect on iOS 5.0
I have implemented a custom movie player with AVPlayer. On setting the value of videoGravity in AVPlayerLayer to AVLayerVideoGravityResizeAspectFill I see the desired effect in iOS 4.2, 4.3. But ...
4
votes
0answers
109 views
How to handle HTTP Basic Authentication in AVURLAsset?
I am trying to develop a custom movie player in iPhone using AVPlayer. But I am just wondering that if the m3u8 url response sends back an authentication challenge, how do I handle that. I do know ...
4
votes
2answers
207 views
iphone, my AVPlayer player is playing video really fast
My application is using AVPlayer to play video. There is a serious problem that my app currently experience. Sometimes, it is playing the video very fast although I checked to make sure that I either ...
4
votes
1answer
1k views
iOS AVAsset.duration is zero for HTTP live streaming but works for progressive
I have an iOS app that plays video from a HTTP Live stream "playlist.m3u8" and I have a custom player created using AVPlayer. To handle normal user interactions such as scrubbing i need to get the ...
4
votes
1answer
3k views
Looping a video with AVFoundation AVPlayer?
Is there a relatively easy way of looping a video in AVFoundation?
I've created my AVPlayer and AVPlayerLayer like so:
avPlayer = [[AVPlayer playerWithURL:videoUrl] retain];
avPlayerLayer = ...
4
votes
0answers
467 views
Get UIImage from the CALayer attached to AVPlayer (extract frame from video playing)
I play a video with AVPlayer. It works ok.
Now I want to get a UIImage from the video playing (when I push a button for the moment).
Attached to my AVPlayer there is a CALayer that is used to ...
3
votes
0answers
187 views
Return volume control to iOS device ringer after playback ends
I have an audio app that uses the Media Playback audio session category to allow background audio. Once my audio session is initialized, the hardware volume buttons on the iOS device control the ...
3
votes
1answer
420 views
Is there an example project for using AVPlayer with AVSynchronizedLayer?
The documentation of AVPlayer recommends that the dev may use AVSynchronizedLayer instead of AVPlayerLayer.
AVSynchronizedLayer seems to be working with an AVPlayerItem though, which in turn is used ...
3
votes
1answer
243 views
AVPlayer seekToTime: Poor performance while looping short videos
this is my first question, but I've readed StackOverflow for years.
Well the thing is that I must concatenate a set of videos (MP4) in a particular order, and the last one must loop continuously. ...
3
votes
0answers
103 views
How to add iPod EQ when playing audio with AVPlayer?
I am able to play songs from iPod library using AVPlayer class.
Now what I want to do is to insert equalizer to the audio produced.
Anybody has experienced in doing this?
3
votes
1answer
133 views
Iphone .How to start recording when detecting sound, and stop recording when detect silence
How to start recording when detecting sound, and stop recording when detect silence?
3
votes
2answers
1k views
Airplay with AVPlayer?
Is there any way to support AirPlay with AVPlayer? I know it can be done with MPMoviePlayerController, but I see no indication of AVPlayer support in the documentation.
Thanks!
3
votes
1answer
658 views
Play multiple Audio Files with AVPlayer
I'm trying to play multiple sounds at the same time.
The approach initially I've taken was to create several players , but it seems wrong one.
What's the best way to play several audio files at the ...
3
votes
2answers
512 views
iPhone SDK: AVAudioRecorder will not record after calling [AVPlayer play]
I have a view controller that uses AVPlayer. this view controller can load a modal view controler where the user can record audio using AVAudioRecorder.
this is what happens:
if the user plays the ...
3
votes
1answer
821 views
AVPlayer Questions, while Live Streaming (iOS)
I have AVPlayer Questions.
1.How to control the volume of it?
2.How to know if the AVPlayer is reloading music because bad connection, do i have some inidication of it?
3
votes
3answers
2k views
Pre-buffering for AVQueuePlayer
Does anyone know if AVQueuePlayer starts buffering the next AVPlayerItem when the current item is about to finish playing?
I know there's nothing in the docs to suggest this, I'm asking mostly if ...
2
votes
1answer
212 views
iOS: AVPlayer video preloading
I am using AVPlayer to play videos. The lenght of them is short, 2-5 second. They are played in a random order. The problem is, when changing video, and a new video starts to play, the device lags for ...
2
votes
3answers
168 views
Play brightcove videos
I want to play a remote video hosted in Brightcove. As Brightcove URLs are links to players not direct links to video files the AVPlayer won't do it.
I know Brightcove provides an API but can't find ...
2
votes
0answers
159 views
Displaying AVPlayer content on two views simultaneously
I am creating an HTTP Live Streaming Client for Mac that will control video playback on a large screen. My goal is to have a control UI on the main screen, and full screen video on the secondary ...
2
votes
0answers
257 views
AVPlayer “freezes” the app at the start of buffering an audio stream
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. ...
2
votes
1answer
484 views
AVPlayer streaming progress
I'm successfully using AVPlayer to stream audio from a server and what I want to do now is to show a custom UISlider who shows the progress of the buffering.
Something like this:
With AVPlayer ...
2
votes
1answer
471 views
AVPlayer replaceCurrentItemWithPlayerItem not working on iOS 4.3.3+
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) ...
2
votes
1answer
290 views
Equivalent of MPMovieScalingMode in AVPlayer?
With MPMoviePlayerControllers's, scaling a movie is easy with setting MPMovieScalingMode. (like MPMovieScalingModeFill, MPMovieScalingModeAspectFill)
With AVPlayer/AVPlayerLayer I can't seem to find ...
2
votes
2answers
593 views
ios avplayer trigger streaming is out of buffer
I wanna to reconnect to the server when the streaming is out of buffer.
How can I trigger the AVPlayer or AVPlayerItem is out of buffer?
I know there are playbackLikelyToKeepUp, playbackBufferEmpty ...
2
votes
1answer
2k views
HTTP Live Streaming with AVPlayer in iOS 4.0?
Is it possible to use HTTP Live Streaming with AVPlayer on iOS 4.0? This was clearly a documented feature of 4.0. However, if I run Apple's SitchedStreamPlayer sample code on my 3GS running iOS 4.0.1, ...
2
votes
2answers
896 views
Handle streaming events with AVPlayer
I'm building an app wich plays an audio stream (from a webradio).
I'm using AVPlayer for it.
1) I'd like to know how you would handle AVPlayer's "buffering" when the connection is slow or when the ...
2
votes
0answers
256 views
Playing music from iPod library with no delay
I am trying to play audio files from the iPod library without any delay from calling 'play' to when the actual music starts.
I tried using the MPMusicPlayerController, but sometimes there is a delay, ...
2
votes
1answer
587 views
AirPlay Meta Data on Apple TV from App (AVPlayer - MPVolumeView)
I have my app successfully streaming an MP3 via AVPlayer. I implemented a MPVolumeView to pull in AirPlay support which works great but I notice that the title info on my apple tv, does not show ...
2
votes
0answers
615 views
Can AVFoundation be coerced into playing a local .ts file?
Clearly, AVFoundation (and Quicktime X) can demux and play properly encoded .ts containers because .ts containers underly HTTPS live streaming. Short of setting up a local web service to serve the ...
2
votes
2answers
275 views
AVPlayerStatus?
So I'm having trouble reading how I should use the AVPlayerStatus property
I have made the @property(nonatomic, readonly) AVPlayerStatus *status; as the documentation tells me, but cant seem to find ...
2
votes
3answers
2k views
Knowing when AVPlayer object is ready to play
Im (a bit of a noob) trying to play an mp3 file that is passed to a view from the previous view.
(stored in the NSURL *fileURL variable)
Im initialising AVPlayer with
player = [AVPlayer ...
2
votes
0answers
382 views
iPhone SDK. is it possible to rotate videos in AVplayer using AVURLlAsset / AVMutableComposition?
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. if the source ...
2
votes
1answer
255 views
Detecting touches in MPVolumeView
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 per the ...
2
votes
2answers
843 views
setVolume not working on AVMutableAudioMixInputParameters with playing from phones local iPod library
I'm currently trying to play music from a phones local iPod library using AVPlayer rather than MPMusicPlayerController using the application controller.
I can get it select a track from the local ...
1
vote
1answer
14 views
Accessing iPod library for use with AVAudioPlayer or remote control events with AVPlayer
I've read many threads on here and haven't yet come across the right one. It's been explained very well that AVAudioPlayer cannot play files from the iPod Library, but does this mean that there's no ...
1
vote
1answer
41 views
alarm iphone sdk
I'm trying to make alarm in my app. I made UILocalNotification and it works fine. But i need to set a mp3 song as a sound of my notification and it is not working
Here is some code
NSString ...
1
vote
1answer
39 views
How do I subclass AVPlayer?
I'm working to subclass AVPlayer so that I can create a method that skipsBackwards in a queue of music. I want to build a fully functional music player that uses music from the users iPod. So that ...
1
vote
1answer
58 views
How to let AVPlayer retrieve playlist secured by SSL?
We´re developing a HTTP-streaming iOS app that requires us to receive playlists from a secured site. This site requires us to authenticate using a self signed SSL certificate.
We read the credentials ...
1
vote
1answer
72 views
Getting iOS 5 AVPlayer to display the last frame of the video when playback completes instead of a black screen
I am making some modifications to an iPad app written by somebody else and one of the things I need to fix is that the video needs to continue to show the last frame when playback is complete rather ...
1
vote
1answer
53 views
AVPlayer current time is not working
OK. AvPlayer is working great with streaming audio. In my app I have UISlider that shows current seconds of the playing song. Now I'm trying to make audio seek with UISlider.
Here is the code
...
1
vote
1answer
201 views
Can't Play Sound on Xcode iphone simulator
I am trying to play a sound thats linked to a button, but I get the following error code. How can I fixed this problem?
2012-01-13 07:22:58.887 M3NYFAC3Z[5875:1e03] Error loading
...
1
vote
2answers
57 views
Get AVPlayer that is current playing the audio
I am using an AVPlayer, and I would like the user to be able to leave the screen that is controlling the audio, then come back to it with the same audio playing. I have accomplished this, but I can't ...
1
vote
1answer
173 views
MPNowPlayingInfoCenter nowPlayingInfo ignored for AVPlayer audio via AirPlay
I have implemented audio playback using AVPlayer, playing a remote mp3 url.
I want to display the information about the currently playing audio using the MPNowPlayingInfoCenter nowPlayingInfo method.
...
1
vote
1answer
78 views
loadedTimeRanges property of AVPlayerItem not available in MonoTouch & objective-c selectors mapping
I need to use the loadedTimeRanges property of the AVPlayerItem class to know which part of the file has been downloaded. Unfortunately, this property don't seems to be available in MonoTouch.
In ...