2011-06-20 330 views
0

我編寫的代碼如下,在youtube嵌入式播放器中播放視頻。 它打開播放器窗口並顯示視頻,但不播放。在iphone中播放視頻播放器中的視頻播放器

if(self.isYouTube) 
    { 
     NSString *embedHTML; 
     NSComparisonResult order = [[UIDevice currentDevice].systemVersion compare: @"4.3" options: NSNumericSearch]; 
     if (order == NSOrderedSame || order == NSOrderedDescending) { 

      embedHTML = @"<html><head><style type=\"text/css\">body {background-color:black; color:black; margin-right:auto; margin-left:auto;}</style></head><body style=\"margin:0\"><embed id=\"yt\" src=\"%@\" airplay=\"allow\" type=\"application/x-shockwave-flash\" position=\"fixed\" allowfullscreen=\"true\" autoplay=\"1\" width=\"320.0\" height=\"460.0\"></embed></body></html>"; 

     } else { 

      embedHTML = @"<html><head><style type=\"text/css\">body {background-color:black; color:black; margin-right:auto; margin-left:auto;}</style></head><body style=\"margin:0\"><embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" position=\"fixed\" allowfullscreen=\"true\" autoplay=\"1\" width=\"320.0\" height=\"460.0\"></embed></body></html>"; 

     } 


     NSString *contentHtml = [NSString stringWithFormat:embedHTML,self.url]; 

     [self.webView setBackgroundColor:[UIColor blackColor]]; 

     [self.webView loadHTMLString:contentHtml baseURL:nil]; 

     } 
    else 
    { 
     NSURL *urlForOpenFile=[NSURL URLWithString:self.url]; 
     NSURLRequest *request=[NSURLRequest requestWithURL:urlForOpenFile]; 
     [self.webView loadRequest:request]; 
    } 

你能告訴我,代碼中有什麼問題。

謝謝。

回答

1

iOS不支持Flash,你應該使用HTML 5的新標籤video包裹的視頻網址是這樣的:

<video src="point/to/mov"></video>

+0

那不是真實的,你仍然可以在播放嵌入的內容從YouTube youtube播放器。儘管如此,iOs不支持Flash。 –

+0

anyways..it不玩在模擬器和設備也 –

+0

請確保您的視頻網址可以在iOS上播放,說,mov或mp4格式,而不是flv。 – cxa