|
@@ -47,6 +47,7 @@ class PQStuckPointEditerController: PQBaseViewController {
|
|
|
|
|
|
|
|
|
var isReCreate: Bool = false
|
|
|
+ public var reCreateVideoData: PQReCreateModel?
|
|
|
|
|
|
var lastEditModelBtn: UIButton?
|
|
|
|
|
@@ -480,12 +481,6 @@ class PQStuckPointEditerController: PQBaseViewController {
|
|
|
|
|
|
@objc func editModelClick(sender: UIButton) {
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
@@ -1697,9 +1692,11 @@ extension PQStuckPointEditerController {
|
|
|
if !isSynchroMusicInfoSuccess || !isStuckPointDataSuccess || !isExportVideosSuccess {
|
|
|
return
|
|
|
}
|
|
|
- createPorjectData()
|
|
|
- BFLog(message: "界面编辑界面时参数 选择素材时长:\(selectedTotalDuration) 选择素材总数:\(selectedDataCount) 选择图片总数\(selectedImageDataCount)")
|
|
|
|
|
|
+
|
|
|
+ createPorjectData()
|
|
|
+ BFLog(message: "界面编辑界面时参数 选择素材时长:\(selectedTotalDuration) 选择素材总数:\(selectedDataCount) 选择图片总数\(selectedImageDataCount) 再创建类型:\(reCreateVideoData?.rhythmMode)")
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -1751,6 +1748,29 @@ extension PQStuckPointEditerController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ if(reCreateVideoData != nil){
|
|
|
+
|
|
|
+ BFLog(message: "是再创作进来的 \(reCreateVideoData!.rhythmMode)")
|
|
|
+ switch reCreateVideoData!.rhythmMode {
|
|
|
+ case 1:
|
|
|
+ editModelClick(sender: jumpPointBtn)
|
|
|
+ break
|
|
|
+ case 2:
|
|
|
+ editModelClick(sender: speedStuckBtn)
|
|
|
+
|
|
|
+ break
|
|
|
+ case 3:
|
|
|
+ editModelClick(sender: onlyMusicBtn)
|
|
|
+ break
|
|
|
+ default: break
|
|
|
+
|
|
|
+ }
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
文档规则 https:
|
|
|
*/
|