package com.yeshi.buwan.util.video.shortvideo;
|
|
import com.yeshi.buwan.domain.VideoResource;
|
import com.yeshi.buwan.domain.entity.PlayUrl;
|
import com.yeshi.buwan.domain.solr.SolrShortVideo;
|
import com.yeshi.buwan.iqiyi.util.IqiyiUtil;
|
|
public class ShortVideoUtil {
|
|
/**
|
* 是否为短视频的videoId
|
*
|
* @param id
|
* @return
|
*/
|
public static boolean isShortVideoId(String id) {
|
if (id != null && id.startsWith("s-")) {
|
return true;
|
}
|
return false;
|
}
|
|
|
|
}
|