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.
[Bug] The --external-downloader-args argument need to be placed AFTER the "-i URL" when using ffmpeg as an external downloader #24638
Comments
|
This will break input arguments. |
No it wouldn't : args += ['-i', url, '-c', 'copy']
args += self._configuration_args()and it works like a charm :) (just tried it) Please, give it a chance. |
|
Again: this will break input arguments that must go before |
Checklist
Verbose log
Description
The
--external-downloader-argsargument (i.e.-movflags frag_keyframe+empty_moov) passed toffmpegis not recognized :Option movflags not found.It is because it is placed BEFORE the
-i URLoption offfmpeg.Actually, it needs to placed AFTER the
-i URLoption offfmpeg.If I copy'n'paste the
ffmpegcommand given byyoutube-dl -vand place my--external-downloader-argsargument (i.e.-movflags frag_keyframe+empty_moov) AFTER the-i URLofffmpeg, it works fine :Can you please put the
--external-downloader-argsargument at the right place when usingffmpegas the external downloader ?Thanks for your understanding.
Congratulations for your great tool, I use it almost everyday👍