在模拟器上流视频

时间:2011-08-20 07:34:17

标签: iphone objective-c ios video

我在我的iphone应用程序中播放视频,我想知道视频可以在模拟器上播放,也可以像照片库中一样显示为缩略图。 什么是播放视频的好习惯..

3 个答案:

答案 0 :(得分:1)

以下是youtube视频流的代码

- (void)embedYouTube:(NSString*)url frame:(CGRect)frame {  
 NSString* embedHTML = @"\ 
    <html><head>\ 
 <style type=\"text/css\">\ 
 body {\ 
 background-color: transparent;\ 
 color: white;\ 
 }\ 
 </style>\ 
 </head><body style=\"margin:0\">\ 
    <embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \ 
 width=\"%0.0f\" height=\"%0.0f\"></embed>\ 
    </body></html>";  
 NSString* html = [NSString stringWithFormat:embedHTML, url, frame.size.width, frame.size.height];  
 if(videoView == nil) {  
   videoView = [[UIWebView alloc] initWithFrame:frame];  
   [self.view addSubview:videoView];  
 }  
 [videoView loadHTMLString:html baseURL:nil];  
}  

答案 1 :(得分:1)

是的,这是可能的。

因为你必须使用mpmovieplayercontroller。

此链接可以为您提供帮助。

http://iphoneincubator.com/blog/audio-video/play-video-with-mpmovieplayercontroller-in-ios-3-0-and-3-24-0

答案 2 :(得分:0)

你好shivangi,

          You will try this its help you.

           http://developer.apple.com/library/ios/#documentation/MediaPlayer/Reference/MPMoviePlayerController_Class/Reference/Reference.html