|
@@ -124,7 +124,7 @@ public class VideoServiceImpl implements VideoService {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
- private static String getCoverImgPath(String shareImgPath) {
|
|
|
+ private String getCoverImgPath(String shareImgPath) {
|
|
|
String[] split = shareImgPath.split("/");
|
|
|
StringBuilder stringBuilder = new StringBuilder();
|
|
|
for (String s : split) {
|
|
@@ -139,7 +139,7 @@ public class VideoServiceImpl implements VideoService {
|
|
|
}
|
|
|
|
|
|
|
|
|
- private static String getSmallPlayImgPath(String coverImgPath) {
|
|
|
+ private String getSmallPlayImgPath(String coverImgPath) {
|
|
|
return coverImgPath + "/watermark,image_eXNoL3BpYy93YXRlcm1hcmtlci9pY29uX3BsYXlfd2hpdGUucG5nP3gtb3NzLXByb2Nlc3M9aW1hZ2UvcmVzaXplLHdfMzY=,g_center";
|
|
|
}
|
|
|
|