Advertisement
schorman

Untitled

Jul 6th, 2017
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @ECHO OFF
  2. TITLE "Output 5.1 From Mono WAVS"
  3. if [%1]==[] goto :eof
  4. set Destination=%~d1\%~p1
  5. cd /d %Destination%
  6. md 51
  7. cd /d "%~dp0"
  8. :loop
  9. ffmpeg -i "%~1" -i "%~2" -i "%~3" -i "%~4" -i "%~5" -i "%~6" -filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a]amerge=inputs=6[aout]" -c:a pcm_s16le -map "[aout]" "%Destination%\51\%~n1"_51.w64
  10. pause
  11. shift
  12. shift
  13. shift
  14. shift
  15. shift
  16. shift
  17. if not [%1]==[] goto loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement