Open RblSb opened 2 months ago
By default wav => mp3+ogg is generated. With --ffmpeg ffmpeg, anything => mp4+ogg is generated.
--ffmpeg ffmpeg
Without --ffmpeg, but with specific encoder flags:
--ffmpeg
--ogg ffmpeg -nostdin -i {in} -b:a 96k -ar 44100 {out}: (wav or ogg or mp3 (lame)) => mp3+ogg
--ogg ffmpeg -nostdin -i {in} -b:a 96k -ar 44100 {out}
And if you add to --ogg aac: --aac ffmpeg -nostdin -i {in} -b:a 96k -ar 44100 {out}: (wav or ogg or mp3 (lame)) => mp4+ogg
--ogg
--aac ffmpeg -nostdin -i {in} -b:a 96k -ar 44100 {out}
By default wav => mp3+ogg is generated. With
--ffmpeg ffmpeg
, anything => mp4+ogg is generated.Without
--ffmpeg
, but with specific encoder flags:--ogg ffmpeg -nostdin -i {in} -b:a 96k -ar 44100 {out}
: (wav or ogg or mp3 (lame)) => mp3+oggAnd if you add to
--ogg
aac:--aac ffmpeg -nostdin -i {in} -b:a 96k -ar 44100 {out}
: (wav or ogg or mp3 (lame)) => mp4+ogg