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.
Allow a custom ffmpeg path to be specified #2115
Comments
|
youtube-dl: 2014.01.07.5 As expected, same problem on Ubuntu 13.10 |
Affects the ffmpeg post processors, if ‘--prefer-ffmpeg’ is given and both avconv and ffmpeg are installed, it will use ffmpeg. Otherwise it will follow the old behaviour.
|
ok, I've added (on the git repo, will be available in the next version) the option |
|
Working around this by modifying |
|
@jaimeMF If ffmpeg is in same directory as YTDL, will it detect it? If not any ways to make it do? |
|
Since youtube-dl 2015.02.16, you can use the |
|
Thanks! |
|
Thanks for that helpful option. I build a new avconv binary only for yt-dl. I don't want to install backports/ppa/unstable on my Ubuntu LTS version. It works perfect now. |
|
Any clue how to specify the path with python? |
|
@HarrySykes7890 It's not documented in YoutubeDL.py for some reason, I'm guessing oversight? |
youtube-dl: 2014.01.07.5
python: 2.7.3
OS: Ubuntu 12.04
Great work on providing a way to join DASH audio and video!
I know it hasn't been announced yet, but I thought I'd report a possible issue related to it. The ffmpeg/avconv on Ubuntu 12.04 doesn't seem to mux the streams correctly:
produces an .mp4 file with an audio track but no video track:
I get an error if I try to merge the streams manually with the stock ffmpeg e.g.:
I get the audio-only file (and no error) if I replace
-c copywith-acodec copy -vcodec copy.Both options work fine if I use a more recent version of ffmpeg:
An option to set the ffmpeg path would allow me to use the more recent ffmpeg automatically; it would also allow users to make their own choices re: avconv vs ffmpeg.