Browse Source

播放时隐藏封面图

harry 3 years ago
parent
commit
4803103204
1 changed files with 2 additions and 4 deletions
  1. 2 4
      Introduce/Record/INVideoExportController.swift

+ 2 - 4
Introduce/Record/INVideoExportController.swift

@@ -587,10 +587,6 @@ class INVideoExportController: BFBaseViewController {
         // 点击保存至相册上报
         BFEventTrackAdaptor.baseReportUpload(businessType: .bt_buttonClick, objectType: .ot_saveToAblum, pageSource: .sp_composePage, extParams: saveAllBtn.isSelected ? ["saveAll": true] : ["saveRecord": true], commonParams: commonParams())
     }
-    
-    func combineVideo(isAll:Bool){
-        
-    }
 
     @objc func saveAllAction(btn: UIButton) {
         if btn.isSelected {
@@ -613,6 +609,7 @@ class INVideoExportController: BFBaseViewController {
         if !hasExportAll {
             exportNow()
         } else {
+            coverIV.isHidden = true
             avplayer.pause()
             let item = AVPlayerItem(url: saveAllUlr)
             avplayer.replaceCurrentItem(with: item)
@@ -643,6 +640,7 @@ class INVideoExportController: BFBaseViewController {
         if !hasExportOnly {
             exportNow()
         } else {
+            coverIV.isHidden = true
             avplayer.pause()
             let item = AVPlayerItem(url: saveOnlyUlr)
             avplayer.replaceCurrentItem(with: item)