Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am trying to load a video from web in my webview, this video is not from youtube i am not getting how to load it can any one help me other than this code

- (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];

  //  UIWebView *webView =[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
    [vebview loadHTMLString:html baseURL:nil];
    [self.view addSubview:vebview];
}
- (void)viewDidLoad
{
    [self embedYouTube:@"http://player.vimeo.com/video/32983838" frame:CGRectMake(0, 0, 320, 449)];
    [super viewDidLoad];
}
share|improve this question

2 Answers

This works using UIWebViews created in IB:

The .h File:

 @property (nonatomic, retain) IBOutlet UIWebView *infoVideo1;   
 -(void)embedYouTubeInWebView:(NSString*)url theWebView: (UIWebView *)aWebView;

The .m File: in the viewDidLoad:

 [self embedYouTubeInWebView:youTubeString theWebView:infoVideo1];

the Method:

-(void)embedYouTubeInWebView:(NSString*)url theWebView:(UIWebView *)aWebView {     
 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,aWebView.frame.size.width,  aWebView.frame.size.height]; 
    [aWebView loadHTMLString:html baseURL:nil];
    }
share|improve this answer
is this for videos other than youtube??? – Quality Coder Dec 20 '12 at 13:11
is this will work for player.vimeo.com/video/32983838 ?? – Quality Coder Dec 20 '12 at 13:13
It will work once integrate this code into Your Project.It will satisfy Your condition. – sravan kumar Dec 20 '12 at 13:44
but in my viewdidLoad why you are giving embedyoutube ??although i don t have youtube link – Quality Coder Dec 20 '12 at 14:01
It Will work for the normal link videos also.You Can create your method as per your requirement. – sravan kumar Dec 21 '12 at 5:23

You can use MPMoviePlayerController control for Playing Video.

Import <MediaPlayer/MediaPlayer.h> framework into application.

.h File

#import <MediaPlayer/MediaPlayer.h>

MPMoviePlayerController *moviePlayerController;

.m File

-(void)startVideo:(NSString*)fileURL
{
   UIWebView *w = [[UIWebView alloc] init];
   w.frame = CGRectMake(10, 0, 300, 340);
   w.backgroundColor = [UIColor clearColor];

   moviePlayerController = nil;
   CGRect rect = CGRectMake(10, 0, 300, 400);

   moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
   [moviePlayerController.view setFrame:rect];
   moviePlayerController.fullscreen = YES;


   [moviePlayerController play];

   [w addSubview:moviePlayerController.view];
}

Here, I've used dynamic web-view inside view. You cn use it directly by XIB.

Hopefully, It'll helpful to you.

Thanks.

share|improve this answer
can i do without importing media file or any other way? – Quality Coder Dec 20 '12 at 13:07
i want for this link player.vimeo.com/video/32983838 – Quality Coder Dec 20 '12 at 13:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.