-
I am ripping a bunch of audiobooks and would like to have them both in FLAC and Vorbis Ogg. Is it possible to tell whipper to do it at the same time? Similar to how I can specify multiple output formats in other tools like RubyRipper. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Whipper rips from the cd media into .wav format. The flac conversion is done through whipper/program/flac.py. diff whipper/program/flac.py newwhipper/program/flac.py
Of course the correct solution would be add options to the cd rip command to support output format. |
Beta Was this translation helpful? Give feedback.
-
You should consider opus instead which has way better low bitrate performance. I batch encode flac from whipper to opus for mobile, etc. |
Beta Was this translation helpful? Give feedback.
-
I believe opus is a lossless codec. I use Sonos gear which does not support opus. |
Beta Was this translation helpful? Give feedback.
-
Sorry I neant lossy %-( |
Beta Was this translation helpful? Give feedback.
Whipper rips from the cd media into .wav format. The flac conversion is done through whipper/program/flac.py.
If you want to you can edit the file (with su access and knowledge of the python module hierachy)
flac.py spawns a thread.
This thread does check_call(['flac', '--silent', '--verify', '-o', outfile,
'-f', infile])
the infile is the name of the wav input (e.g. /tmp/tmp32tawm9b.whipper.wav)
The outfile is the destination (e.g. /data/tom/Downloads/Music/Montaigne/making it!/_Montaigne_making it!_02_embodi3d.flac.part)
So what it is doing is calling the linux command flac.
If you have a command for converting to ogg you can add a second command to the flac.py program.
Lets assume you …