/**
* 判断文件类型
*
* @param videoUrl
* @return
*/
private static String getVideoFomat(String videoUrl) {
String tmpName = null;
if (videoUrl != null) {
tmpName = videoUrl.substring(videoUrl.lastIndexOf(".") + 1,
videoUrl.length());
}
return tmpName;
}