OgreVorbis

Single Video to OGG Converter

Aug 26th, 2025
740
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.43 KB | None | 0 0
  1. @echo off
  2. title Single Video to OGG Converter
  3. color 0b
  4. echo This program will make an OGG audio file from only a single video file.
  5. echo The quality is low and the output is in mono not stereo. This is specifically
  6. echo for making very compressed podcast rips from youtube vids.
  7. echo.
  8. set /p VIDFILE=Drag video here:
  9. set /p OUTFILE=Type output file name (.ogg):
  10. ffmpeg -i %VIDFILE% -vn -acodec libvorbis -ac 1 -aq 1 %OUTFILE%
  11.  
Advertisement
Add Comment
Please, Sign In to add comment