I just want to figure out how to get a video's total time in seconds. Is there video metadata that loads or something?
|
Has anyone tried taking a video from the camera and then using the video player provided to play it? When you take the video in portrait mode, sometimes the movie will ... |
I have implement an application.In which there is list of videos.when user touch on the video then video play in MPMoviePlayer.But when video is finished then i want to play another ... |
I have implementing uITabbar application in which i want to play video file.Video file is playing but not seen.And simulator is Landscapmode bu MPMoviePlayer in Potrait mode.How to solve this problem.
... |
I need to have the possibility to play more than one video in an app.
Unfortunately, the second time I press play, video appears blinking.
I use only this code for playing ... |
I'm trying to play two videos continuously using MPMoviePlayer. I let the second video play when the MPMoviePlayerPlaybackDidFinishNotification is posted.
[[NSNotificationCenter defaultCenter] addObserver:self
...
|
I try to play a video on the server with this code. I have a error.
//Play the video from server
- (IBAction)playVideo:(id)sender;
{
...
|
|
I was using MPMoviePlayer to play a short video in my app with no problems in SDK 3.1.3. I made the changes to the code in SDK 4 but the video ... |
I'm working on an iPad app, it has a few videos within views using the MPMediaPlayer framework.
Videos are working nice but on viewLoad there is a flashing of the video area ... |
how to play live streaming video using mpmovieplayer in iphone sdk ?
|
I'm using mpmovieplayer to play video on ios 4, and I want to keep the audio playing when my app enter background, but it doesn't work. I thing it's because video ... |
I'm trying to show a MPMoviePlayerViewController.
MPMoviePlayerViewController* theMoviePlayer = [[MPMoviePlayerViewController alloc]
...
|
Since the new update came out for apple tv where you can stream video to it from any iOS device running 4.2, I was trying to stream a video from my ... |
I want to make a youtube app like this (Youtube Stream) http://itunes.apple.com/us/app/youtube-stream/id384383425?mt=8# app for the iphone, where some videos are streamed/downloaded from a youtube and played within same app ... |
I am streaming small movies (1-3MB) off my website into my iPhone app. I have a slicehost webserver, I think it's a "500MB slice". Not sure off the top ... |
I try to display two different http/rtsp-Video-Streams at the same time on the same UIView.
So my first thought was to use the UIViews of two MPMoviePlayerController.
But the documentation says:
Note: Although you ... |
I´ve created an new ViewController (only with the .h and .m file) and added that code to play a video. After the video has finished, i get a "Exe_bad_access" error.
Error ... |
does initWithContentURL: in MPMoviePlayerController download the video file at first and then start playing or will it stream file like in youtube?
I want to play an video located in server through ... |
I have subclassed MPMoviePlayerController and implement loading movie from stream in my app and everything works just fine. But now I have interesting situation.
I play movie from stream.
Sometimes it happens that ... |
I played video in iphone by using this code
-(IBAction)btnNew_clicked:(id)sender {
NSURL *url = [NSURL URLWithString:@"http://www.businessfactors.de/bfcms/images/stories/videos/defaultscreenvideos.mp4"];
MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
[[mp moviePlayer] prepareToPlay];
[[mp moviePlayer] setShouldAutoplay:YES];
[[mp moviePlayer] setControlStyle:2];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoPlayBackDidFinish:) ...
|
I am trying to play a video(mp4) file from a url with MPMoviePlayer (e.g.: http://localhost/api?file_id=2313mk) but unable to get it working, wonder if there is any solution.
Few tests are ... |
Hia,
I'm looking for a way to play a movie as background in portray mode in my app. The movie should not respond to any taps and my app would have its ... |
Hi,
Im my application, I can play a video using Movie player class. For that video I want to add
vintage video effect. How can we acheive this by using Movie Maker ...
|
I have managed to make my app play a video, but I am a beginner and I don't know how to code that well, I can't figure out how to hide ... |
I'm writing and app in which live stream video is playing;
The video is played from a certain url.
how can i do it?
|
This is code supposed to play live video/audio stream,
it work's fine, but the single problem is that it doesnt show the video,
only the audio comes not the video...
#import <MediaPlayer/MediaPlayer.h>
@implementation ...
|
I am building a game application where I need to play animation videos and their corresponding sounds(may be different depending on situation). I have all videos and sounds file are ready ... |
I have used a MPMoviePlayerController object to play a movie in my app but as soon as I call [moviePlayer play] in a function there is a small jerk and then ... |
since I moved to sdk 4.3 my app is not able to play streaming videos anymore (I only get the audio). I tried to look the MoviePlayer sample code but it's ... |
Hi i am designing a basic iPhone/iPad app that has a UINavigationController. The user clicks on the table row and it opens up a video in full screen. This works well ... |
I have a UISlider which controls the playback seek of the video. However, when i drag this slider to a certain position and set the currentPlaybackTime to the appropriate float value, ... |
I have a .mp4 video url in my server and trying to play by using the following code. But it doesn't do any actions when click on play button. I'm trying ... |
hello friend i am trying to play video programmatically using url, I'm using web services to get url and i added media player frame kit also, i am getting url ... |
I have been writing a video streaming app that receives non-Live HTTP Stream over Wifi. (for an example of what "non Live HTTP streaming": http://wiki.videolan.org/Documentation:Streaming_HowTo/Command_Line_Examples#HTTP_streaming)
It used to work with ... |