Browse Source

fix output file name

subDesTagesMitExtraKaese 1 year ago
parent
commit
a451ecc7cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/run.sh

+ 1 - 1
app/run.sh

@@ -17,5 +17,5 @@ for f in /data/ingest/*; do
     ffmpeg -loglevel warning -y -i /data/temp/"$filename"_"$SPEAKER".wav -i /data/temp/"$filename"_Instruments.wav \
         -filter_complex "[0:a]volume=$VOCALS_VOLUME[a0];[a0][1:a]amix=inputs=2:duration=longest" /data/temp/"$filename"_"$SPEAKER"_combined.wav
     # Combine audio and video into one file
-    ffmpeg -loglevel warning -y -i /data/ingest/"${f##*/}" -i /data/temp/"$filename"_"$SPEAKER"_combined.wav -c:v copy -map 0:v:0 -map 1:a:0 /data/output/"$filename".mp4
+    ffmpeg -loglevel warning -y -i /data/ingest/"${f##*/}" -i /data/temp/"$filename"_"$SPEAKER"_combined.wav -c:v copy -map 0:v:0 -map 1:a:0 /data/output/"$filename"_"$SPEAKER".mp4
 done