Add fixers for glitch and audio replacing

This commit is contained in:
Arkadiusz Wieczorek 2024-02-09 02:00:39 +01:00
parent 58dd1d5beb
commit 5e15153eef
2 changed files with 2 additions and 0 deletions

1
add-glitch.sh Executable file
View File

@ -0,0 +1 @@
ffmpeg -hwaccel videotoolbox -i glitch.mp4 -i video-with-new-audio.mp4 -i glitch.mp4 -filter_complex "[0:v:0][0:a:0][1:v:0][1:a:0][2:v:0][2:a:0]concat=n=3:v=1:a=1[vv][aa]" -map "[vv]" -map "[aa]" -c:v libx264 -r 50 -c:a aac -strict experimental -b:a 320k output.mp4

1
fix-audio.sh Executable file
View File

@ -0,0 +1 @@
ffmpeg -hwaccel videotoolbox -i out/video.mp4 -i icdw-11-final.wav -c:v copy -c:a aac -b:a 320k -strict experimental video-with-new-audio.mp4