An AVPlayer object is used to implement controllers and user interfaces for single- or multiple-item playback.
0
votes
0answers
36 views
iOS: AVPlayer: Detect rate change
KVO for rate isn't working. Not sure what I'm doing wrong.
Where I create the player:
[player addObserver:self forKeyPath:@"rate" options:0 context:nil];
Elsewhere
- ...
0
votes
1answer
13 views
How to add AVQueuePlayer in subview to show view
I make a AVQueuePlayer and add some video items . when i run app , video's sound play but video is not showing. i know the reason why video is not showing , it is because i haven't know how to add ...
0
votes
1answer
7 views
AVQueuePlayer playback freezes when removing items from queue
I successfully use AVQueuePlayer to queue and play AVPlayerItems. However, the problems begin when I alter the players queue with calls to removeItem: method. My assumption was that I can freely ...
0
votes
0answers
11 views
iOS: video playback from server without mp4 extension
I want to playback a mp4/h264 encoded video stream from a remote webserver on iOS. The problem is that the file on the remote server does not have a standard extension like "mp4" and the server also ...
0
votes
3answers
25 views
Unrecognized Selector in AVplayer setNumberOfLoops Method
When calling the numberOfLoops method like so:
[_player setNumberOfLoops:-1];
I get the following error:
-[AVPlayer setNumberOfLoops:]: unrecognized selector sent to instance 0x7d52d30
How can this ...
1
vote
1answer
17 views
iOS stream audio with no extension
I am looking to play a live audio stream within my app using AVAudioPlayer or AVPlayer, however the link has no extension and so whenever I try to set it up, it fails. Does anyone have any ...
0
votes
0answers
27 views
AVPlayer export NSData
Is there a way to have AVPlayer in iOS 6 play a track from a remote URL and then export the track (after it has fully downloaded) to NSData for caching? The reason I'm hoping for NSData is to first ...
0
votes
1answer
12 views
setAspectRatio doesn't work until the window is resized
In my app I have a main window where I play some video using AVPlayer. In order to force a particular aspect ratio I'm using setAspectRatio: method. I placed it in my app's windowControllerDidLoadNib: ...
0
votes
0answers
18 views
Sync AVQueuePlayer across all iOS devices?
I have a requirement where users on iPhone can record an audio and broadcast to a channel. The people who broadcast audio casts to same channel, the casts will be added to the queue and they are all ...
0
votes
0answers
15 views
How to fix MP3AudioStream error?
I'm getting the following error randomly (and sometimes consistently on launch). It can happen when there are background threads and when there aren't and it seems to be a problem with the library so ...
0
votes
2answers
42 views
Resume AVPlayer video playback after app become active
I write custom player from AVPlayer for video playback. According to Apple docs set the video layer:
self.player = [IPLPlayer new];
self.player.playerLayer = (AVPlayerLayer ...
0
votes
2answers
39 views
AVPlayer got the metadata but not playing
I'm trying to do a very simple application, the purpose is listening an audio stream (AAC 64 kbps). To do so I'm using AVPlayer from the Apple AVFoundation has follow :
ViewController.m
#import ...
-1
votes
3answers
75 views
IOS AVPlayer won't play video
I'm trying to play a video usingso I got some code from a tutorial but it won't work.
Here's the code I use :
- (void) viewDidAppear:(BOOL)animated
{
avAsset = [AVAsset assetWithURL:[NSURL ...
0
votes
0answers
31 views
Show video thumbnails while dragging progress bar on a video [closed]
Wondering how the likes of Netflix and other video streaming apps accomplish the following... when the video loads, a user can take the progress bar and while its being moved, it can display certain ...
0
votes
0answers
33 views
play multi video in uitableview with AVPlayer
i have multiple vide in an UITableView.
I want to do something like vine's feeds.
the video play automatic when scrolling to it.
i use AVPlyer to do that.
but i found that it is not so smooth ...
0
votes
0answers
55 views
Error Domain=NSOSStatusErrorDomain Code=560030580 “The operation couldn’t be completed. (OSStatus error 560030580.)”
I was using AVPlayer to play online mp3 stream ! When I pause the player
[AVPlayer pause];
AVAudioSession *session = [AVAudioSession sharedInstance];
session.delegate = nil;
NSError *error = nil;
...
1
vote
1answer
44 views
playing and stopping using AVPlayer
I am trying to develop one radio app using AVPlayer which streams audio from a particular link. Done coding for that and there is no error but still its not playing the music.
Here is my ...
0
votes
0answers
11 views
How to update progres bar values according to values given by another view controller in iOS?
I'm playing mp3 files using urls.To play these, I'm using the AVPlayer. I used a separate class to initialize and include all the play, pause, stop methods. Now I want to add a seek bar to my View and ...
0
votes
0answers
26 views
How create volume in AVPlayer for mac?
i have some interesting code for AVPlayer from Apple site. This is code for changing volume in player.
+ (NSSet *)keyPathsForValuesAffectingVolume
{
return [NSSet ...
0
votes
0answers
21 views
AVPlayer cannot play cached songs after app update. Why?
My app caches songs from music service for offline playback. They are saved into a subdirectory under NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES). I also have code in ...
0
votes
0answers
54 views
How get id3 tags in Xcode?
i used AVPlayer for play music from URL. SO I have all what i need, but how get id3 tags in my app. I want see name of tracks, maybe album and others. Also i see any topics about id3 tags but some not ...
0
votes
0answers
36 views
muting a video played with AVPlayer in iOS6 is working with delay
I am trying to mute a video which is being played by an AVPlayer object.
The timing of the muting is inconsistent.
Sometimes the mute takes affect only 1 or two seconds after the video actually starts ...
0
votes
0answers
27 views
how to stop audio streaming using AVPlayer
I have one question How to stop live audio streaming using AVPlayer?
I have googled and done some research but almost everywhere i got only 1 thing that AVPlayer only supports play and pause.
So ...
0
votes
1answer
70 views
AVPlayer live radio streaming stop after 15 minutes or so
As the title, I'm trying to live stream internet radio on both iOS and OS X using AVPlayer instance. Everything works as expected with a simple player = [AVPlayer playerWithURL:URL];
While using the ...
2
votes
1answer
66 views
I can't get video screenshots in iOS5 using AVAssetImageGenerator
I need to get screenshots from a video.
I'm using the following method:
- (UIImage *)screenshotFromPlayerItem:(AVPlayerItem *)player atTime:(CMTime)time
{
CMTime actualTime;
NSError *error;
...
1
vote
1answer
48 views
Observer in NSNotification (itemDidFinishPlaying) RANDOMLY to called twice
I am displaying a text as soon as a video is done playing. I am using a notification technique to achieve that. The only problem is that the Observer is called twice every now and then. It triggers ...
0
votes
0answers
21 views
AVPlayer not buffer in background mode
I'm playing mp3 audio stream using AVPlayer I'm getting all urls from an array and play songs 1 after the other. my songs play in background also if particular song completed his buffering.My problem ...
1
vote
1answer
37 views
AVMutableAudioMixInputParameters setVolume atTime not working only with kCMTimeZero
Im am developing an iOS app in Xcode. I am still new to programming.
I am trying to set the volume of an audiotrack while playing it with an AVPlayer. It is working great if a set the time at ...
1
vote
1answer
69 views
Crash in -[AVPlayerItem _attachToPlayer:] An AVPlayerItem cannot be associated with more than one instance of AVPlayer
i got a crash affecting about 10% of my users, yet I'm unable to reproduce it, and don't know exactly when this happens.
Crashlytics reports about half of the crashing users having the App not in ...
1
vote
1answer
77 views
Adding activity indicator while AVplayer gets ready to play music
I developed an app for radio and it's working.
I want to put an activity indicator view so that when you touch the play it starts the activity indicator view and when the audio starts, the activity ...
0
votes
1answer
30 views
How can I draw something on top of AVPlayer video in Cocoa?
In my app I want to be able to draw rectangles on top of the playing video. I already implemented the drawing canvas which is a NSView, and I have a player implemented as well.
However, when I place ...
0
votes
0answers
38 views
AVPlayer - Moving from one movie segment to another without black flicker.
I am using AVFoundation's AVPlayer to play 2 video clips made from 1 longer video.
I'm using this code:
AVURLAsset *asset1 = [AVURLAsset URLAssetWithURL:[[NSBundle mainBundle] ...
0
votes
0answers
29 views
How to display “This video is playing on …” when Airplaying with AVPlayer?
Does anyone know how to display a "This video is playing on ..." screen when Airplaying with AVPlayer? Example from the VEVO iPhone app:
By default, AVPlayer just displays a black screen. Do I have ...
1
vote
1answer
109 views
AVPlayer set initial playback time iOS
Added KVO for AVPlayer when to play video as queuePlayer is AVPlayer
[self.queuePlayer addObserver:self forKeyPath:@"status" options:0 context:NULL];
observer method:
...
0
votes
1answer
77 views
Using NSURLProtocol to implement play while downloading for AVPlayer on iOS
I'm trying to play a mp4 video on my server and I'd like to cache this video to disk simultaneously.
I know that I can just use 2 requests to do this, one for download another one created by AVPlayer ...
1
vote
1answer
136 views
Audio streaming in ios using AVPlayer
i am trying to develop a small app which should stream audio from a particular link. I am using AVPlayer for that but i dont know why its not working. Tried google but nothing seems to be relevant ...
0
votes
0answers
25 views
Streaming not playing in iPad
hi Im playing mp3 files using a url within my ios app. It played on iPhone 3g but not playing in iPad 1. Im using AVPlayer. Both devices have iOS 5.1. What is the reason? Please help me
Thanks
0
votes
0answers
28 views
Stream music to iOS app via AVPlayer with auth headers
Does anyone know what libraries there are, similar to AVPlayer for iOS that can stream music from an endpoint like Dropbox, but at the same time sending authentication headers in the file request?
0
votes
1answer
117 views
How to make volume slider for AVPlayer in xcode for mac
so i have my simple code of my radio app:
-(IBAction)europaPlus:(id)sender{
NSLog(@"EuropaPlus work");
if (clicked == 0) {
clicked = 1;
NSString ...
0
votes
1answer
109 views
What exactly triggers AVPlayerItemDidPlayToEndTimeNotification?
So I know AVPlayerItemDidPlayToEndTimeNotification is sent when a movie 'has played to its end time'.
My question is how does the player know if an item reaches its end time? I was playing a live ...
0
votes
1answer
76 views
How to use AVPlayer in multiple view and resume controls?
i create an app with xcode 4.6 on iOS 6.1 with a TabBar and 2 different tableView.
Each table view read a line form a file.plist and when tap on a row, you load a DetailView.
The DetailViewController ...
0
votes
0answers
51 views
AVPlayer how do you stop it
Hi have been modifying some code from a previous programmer for us and it looks like he started trying to use the AVAudioPlayer functionality and then decide to migrate it to AVPlayer.
In trying to ...
0
votes
0answers
26 views
How to deal with audio and video are not synchronized when I use AVPlayer play m3u8
I use AVPlayer play video on my app.
Most of video are normal.
A few video encounter a problem that video and audio is inconsistent when playing.video is faster than sound.I don't find any problem ...
0
votes
1answer
50 views
UIScrollView with multiple AVPlayerViews
i need your help. I want to create a horizontal ScrollView with some AVPlayers. I tried this ScrollView with some pictures and it works. The problem now is that i can scroll due the View, but all the ...
0
votes
0answers
38 views
Resume HTTP playback after audio session interruption ends
I am developing an application that plays HTTP live streaming via AVPlayer. When an my audio session gets interruptued (i.e incoming phone call, launch YouTube application ...) i save the state of my ...
0
votes
0answers
45 views
Xcode Play avi or mkv iphone/ipad
I would like to know how to play avi or mkv file. Currently, I have an app that can play mp4 file with avplayer class. Is there any way to decode those file and play with avplayer? I would like to ...
0
votes
0answers
57 views
AVPlayer output latency
I'm using AVFoundation's AVPlayer to play video files in applications that are used both in iOS and OS X. Simultaneously there is also a synchronized MIDI-file running in order to control events that ...
1
vote
0answers
33 views
How to load a video from a specific location
I understand the idea of AVPlayer and how to use it to load&play a video. My question is how to recover the player from screen lock/app going background. By recover, I mean, for example the user ...
0
votes
1answer
101 views
Controls for AVPlayer
I am using AVPlayer to display video in my iOS app. Now I need some nice looking controls for previous, next and the play/pause button. By default AVPlayer doesn't come with any.
I am wondering, are ...
2
votes
0answers
60 views
AVPlayer Slow Forward while playing video
I am using AVPlayerfor play video on iPhone Device now in that to implement the Slow Forward feature i have used following code:
if (buttonIndexFFD<10)
{
buttonIndexFFD++;
[self.player ...

