ffmpeg batch creation

 ffmpeg batch creation code in folder

On Windows Command-line:

(for %i in (*.wav) do @echo file '%i') > mylist.txt

Or for Windows Powershell:

foreach ($i in Get-ChildItem .\*.wav) {echo "file '$i'" >> mylist.txt}

Or for Windows bat-file:

(for %%i in (*.wav) do @echo file '%%i') > mylist.txt      

to join any type of media files use

ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.wav

Comments

Popular posts from this blog

shopify custom html