我正在使用 videoview 显示以下 youtube 视频
http://www.youtube.com/watch?v=FovFG3N_RSU
我不想看到黑屏,但想显示视频的中间帧作为视频的封面。
在 IOS 中,有
如何在android中完成?
我正在使用 videoview 显示以下 youtube 视频
http://www.youtube.com/watch?v=FovFG3N_RSU
我不想看到黑屏,但想显示视频的中间帧作为视频的封面。
在 IOS 中,有
如何在android中完成?
这取决于设备的 android 版本和 flash 支持功能。除非您在设备上安装了 Flash,否则您无法使用 VideoView setVideoUri 方法播放视频(在将 http 链接解析为 uri 之后)。
下面的代码对我有用,但这对你来说是一种黑客行为。
将此代码用于未安装闪存的设备。
public Uri getYoutubeUriForVideoId()
{
String YOUTUBE_VIDEO_INFORMATION_URL = "http://m.youtube.com/watch?ajax=1&layout=mobile&tsp=1&utcoffset=330&v=";
String USER_AGENT ="Mozilla/5.0 (Linux; U; Android 2.2.1; en-gb; GT-I9003 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1";
HttpClient lClient = new DefaultHttpClient();
HttpGet lGetMethod = new HttpGet(YOUTUBE_VIDEO_INFORMATION_URL + videoId);
// setting the header as to get the high quality video url
lGetMethod.setHeader("User-Agent",UrlConstants.USER_AGENT);
HttpResponse lResp = lClient.execute(lGetMethod);
if(lResp == null)
return null;
String lInfoStr = EntityUtils.toString(lResp.getEntity(), "UTF-8");
JSONObject videoInfoJson = new JSONObject(lInfoStr.substring(4,lInfoStr.length()));
JSONObject content = (JSONObject) videoInfoJson.get("content");
JSONObject video = (JSONObject) content.get("video");
JSONArray fmt_stream_map = video.getJSONArray("fmt_stream_map");
String url = fmt_stream_map.getJSONObject(0).getString("url");
return Uri.parse(url);
}