* @param url
* @return
* @throws Exception
*/
public static Video getYinYueTaiVideo(String url) throws Exception {
Document doc = getURLContent(url);
/**
* 获取视频地址
*/
String flash = getElementAttrById(doc, "flashCode", "value");
/**
* 视频标题
*/
String title = doc.getElementById("videoTitle").html() + " - " + doc.getElementById("videoArtistName").html();
/**
* 视频内容
*/
String summary = doc.getElementById("videoContent").select("span").first().html();
/**
* 视频缩略图
*/
String thumbnail = doc.select("meta[property=og:image]").attr("content");
Video video = new Video();
video.setTitle(title);
video.setThumbnail(thumbnail);
video.setFlashUrl(flash);