Created
April 13, 2023 14:06
-
-
Save sshaplygin/ea4af0ea49d8699a1e28d6ef2d2ddf68 to your computer and use it in GitHub Desktop.
My
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mp4 to wav format `ffmpeg -i <infile> -ac 2 -f wav <outfile>` | |
join wav files `ffmpeg -i 1.wav -i 1.wav -i 1.wav -i 1.wav \ | |
-filter_complex '[0:0][1:0][2:0][3:0]concat=n=4:v=0:a=1[out]' \ | |
-map '[out]' output.wav` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment