我在我的iphone应用程序中播放视频,我想知道视频可以在模拟器上播放,也可以像照片库中一样显示为缩略图。 什么是播放视频的好习惯..
答案 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。
此链接可以为您提供帮助。
答案 2 :(得分:0)
你好shivangi,
You will try this its help you.
http://developer.apple.com/library/ios/#documentation/MediaPlayer/Reference/MPMoviePlayerController_Class/Reference/Reference.html