Browse Source

优化音频合成部分代码

Pq 1 year ago
parent
commit
ce2a5d219b

+ 14 - 0
BaseLibrary/src/main/java/com/cooleshow/base/utils/UrlUtils.java

@@ -20,4 +20,18 @@ public class UrlUtils {
             return false;
         }
     }
+
+    public static boolean isValidUrl(String url) {
+        try {
+            URL downloadUrl = new URL(url);
+            // 检查协议是否为HTTP或HTTPS
+            String protocol = downloadUrl.getProtocol();
+            if (!"http".equalsIgnoreCase(protocol) && !"https".equalsIgnoreCase(protocol)) {
+                return false;
+            }
+            return true;
+        } catch (MalformedURLException e) {
+            return false;
+        }
+    }
 }

+ 12 - 1
musicMerge/src/main/java/com/cooleshow/musicmerge/player/CustomPlayer.java

@@ -136,10 +136,21 @@ public class CustomPlayer implements MediaPlayer.OnErrorListener, MediaPlayer.On
         if (isStoped) {
             return;
         }
+
         // release()会释放player、将player置空,所以这里需要判断一下
         if (null != mPlayer && hasPrepared) {
+            LOG.i(TAG, "expectPosition:" + expectPosition);
+            if (expectPosition < 0) {
+                sendDelayPlayMsg(Math.abs(expectPosition));
+                return;
+            }
             mPlayer.start();
         }
+
+//        // release()会释放player、将player置空,所以这里需要判断一下
+//        if (null != mPlayer && hasPrepared) {
+//            mPlayer.start();
+//        }
     }
 
     public void pause() {
@@ -170,11 +181,11 @@ public class CustomPlayer implements MediaPlayer.OnErrorListener, MediaPlayer.On
     }
 
     public void seekTo(int position) {
+        this.expectPosition = position;
         if (mPlayer == null) {
             return;
         }
         LOG.i(TAG, "seekTo getTotal:" + getTotal());
-        this.expectPosition = position;
         if (position > getTotal()) {
             position = getTotal();
         }

+ 4 - 1
musicMerge/src/main/java/com/cooleshow/musicmerge/ui/MusicHandleActivity.java

@@ -403,7 +403,10 @@ public class MusicHandleActivity extends BaseMVPActivity<AcMusicHandleLayoutBind
         String cover = imgCover;
         if (value != null) {
             des = value.getDes();
-            videoCover = value.getVideoCover();
+            String videoCoverResult = value.getVideoCover();
+            if (UrlUtils.isValidUrl(videoCoverResult)) {
+                videoCover = videoCoverResult;
+            }
             String cover1 = value.getCover();
             if (!TextUtils.isEmpty(cover1)) {
                 cover = cover1;