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.
Download video from local manifest.mpd #25326
Comments
|
If you mark it as duplicate then you should link that request because I can't find it. |
Checklist
Description
It seems that currently you can't download video from local manifest.mpd file.
For example I have locally this
manifest.mpdfile with content:It contains video for low and high quality and also audio. So I want to download highest quality and merge it with audio.
Basically
youtube-dl ./manifest.mpd(or something likeyoutube-dl file://./manifest.mpd)Current workaround seems to be just host that file with
python -m http.server 8000and then useyoutube-dl http://127.0.0.1:8000/manifest.mpdwhich while seems to work isn't that nice.