zhangyong 1 year ago
parent
commit
58b5376e5d
1 changed files with 1 additions and 1 deletions
  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",