Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
How to use a different encoder? #13062
Comments
|
Maybe I can do the job with a pipe instead of "--extract-audio". This is my first attempt...
|
|
Yep. Pipes, or just a simple shell script. |
Hi
When I run youtube-dl with "--extract-audio --audio-format mp3 --audio-quality 64K" it uses FFmpeg something like this:-
ffmpeg -y -i file:foo -vn -acodec libmp3lame -b:a 64k file:foo.mp3Is it possible to use "--extract-audio" with a custom command for FFmpeg?
Something like this:-
ffmpeg -y -i foo -ac 1 -f wav - | gogo -b 64 -m m -silent stdin foo.mp3So that it uses the faster mp3 encoder "gogo-no-coda" instead of libmp3lame.
I'm using youtube-dl with Linux Mint.
And gogo...
This is an example command with libmp3lame...