zhangyong 1 年之前
父节点
当前提交
58b5376e5d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      video_stitching/video_stitching.py

+ 1 - 1
video_stitching/video_stitching.py

@@ -52,7 +52,7 @@ class VideoStitching():
         current_time = datetime.now()
         formatted_time = current_time.strftime("%Y-%m-%d")
         for j in audio_url:
-            insert_sql = f"""INSERT INTO video_audio (audio, video_id, account_id, oss_object_key, time, tag) values ('{i}', '{j[0]}', '{j[1]}', '{j[2]}', '{formatted_time}')"""
+            insert_sql = f"""INSERT INTO video_audio (audio, video_id, account_id, oss_object_key, time) values ('{i}', '{j[0]}', '{j[1]}', '{j[2]}', '{formatted_time}')"""
             MysqlHelper.update_values(
                 sql=insert_sql,
                 env="prod",