我有这个代码在同一个网站上工作,但他们改变了主题,现在我正在努力。 这里有什么问题可以获取youtube视频的网址?这是我的方法。该网站的示例链接是http://kabumbu.co.tz/mahojiano-na-masau-bwire/
Element video = doc.select("div.single-archive iframe").first() ;
videourl = video.attr("src");
答案 0 :(得分:2)
到目前为止,代码是正确的,但我只是错误地从视频网址中提取视频ID。使用这种方法
public static String extractVideoId(String ytUrl) {
String vId = null;
Pattern pattern = Pattern.compile(".*(?:youtu.be\\/|v\\/|u\\/\\w\\/|embed\\/|watch\\?v=)([^#\\&\\?]*).*");
Matcher matcher = pattern.matcher(ytUrl);
if (matcher.matches()){
vId = matcher.group(1);
}
return vId;
}
答案 1 :(得分:0)
或者,这是一个仅限Jsoup的解决方案:
/**
*
* /!\ Exceptions raised by this method are NOT logged. /!\
*
* @param youtubeUrl
* @return videoId or null if an exception occured
*
*/
public static String extractVideoId(String youtubeUrl) {
String videoId = null;
try {
Document videoPage = Jsoup.connect(youtubeUrl).get();
Element videoIdMeta = videoPage.select("div[itemtype=http://schema.org/VideoObject] meta[itemprop=videoId]").first();
if (videoIdMeta == null) {
throw new IOException("Unable to find videoId in HTML content.");
}
videoId = videoIdMeta.attr("content");
} catch (Exception e) {
e.printStackTrace(); // alternatively you may log this exception...
}
return videoId;
}
答案 2 :(得分:0)
最好的方式是
code =youtubeUrl.substring(youtubeUrl.length() - 11);