Guest User

Untitled

a guest
Dec 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @echo off
  2. setlocal enableExtensions disableDelayedExpansion
  3.  
  4. echo Command line argument 1: "%~1"
  5. ffmpeg -i "%~1" -vn -ar 44100 -ac 2 -ab 192k -f mp3 "%~1.mp3"
  6.  
  7. endlocal
  8. goto :eof
Add Comment
Please, Sign In to add comment