|
|
@ -293,11 +293,11 @@ def parseOpts():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
postproc.add_option('--extract-audio', action='store_true', dest='extractaudio', default=False,
|
|
|
|
postproc.add_option('--extract-audio', action='store_true', dest='extractaudio', default=False,
|
|
|
|
help='convert video files to audio-only files (requires ffmpeg and ffprobe)')
|
|
|
|
help='convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')
|
|
|
|
postproc.add_option('--audio-format', metavar='FORMAT', dest='audioformat', default='best',
|
|
|
|
postproc.add_option('--audio-format', metavar='FORMAT', dest='audioformat', default='best',
|
|
|
|
help='"best", "aac", "vorbis", "mp3", "m4a", or "wav"; best by default')
|
|
|
|
help='"best", "aac", "vorbis", "mp3", "m4a", or "wav"; best by default')
|
|
|
|
postproc.add_option('--audio-quality', metavar='QUALITY', dest='audioquality', default='128K',
|
|
|
|
postproc.add_option('--audio-quality', metavar='QUALITY', dest='audioquality', default='128K',
|
|
|
|
help='ffmpeg audio bitrate specification, 128k by default')
|
|
|
|
help='ffmpeg/avconv audio bitrate specification, 128k by default')
|
|
|
|
postproc.add_option('-k', '--keep-video', action='store_true', dest='keepvideo', default=False,
|
|
|
|
postproc.add_option('-k', '--keep-video', action='store_true', dest='keepvideo', default=False,
|
|
|
|
help='keeps the video file on disk after the post-processing; the video is erased by default')
|
|
|
|
help='keeps the video file on disk after the post-processing; the video is erased by default')
|
|
|
|
|
|
|
|
|
|
|
|