A commandline application for downloading media content from a DASH MPD file, as used for on-demand replay of TV content and video streaming services like YouTube.
DASH (dynamic adaptive streaming over HTTP), also called MPEG-DASH, is a technology used for media streaming over the web, commonly used for video on demand (VOD) services. The Media Presentation Description (MPD) is a description of the resources (manifest or “playlist”) forming a streaming service, that a DASH client uses to determine which assets to request in order to perform adaptive streaming of the content. DASH MPD manifests can be used both with content encoded as MPEG and as WebM. There is a good explanation of adaptive bitrate video streaming at howvideo.works.
This commandline application allows you to download content (audio or video) described by an MPD manifest. This involves selecting the alternative with the most appropriate encoding (in terms of bitrate, codec, etc.), fetching segments of the content using HTTP or HTTPS requests and muxing audio and video segments together. It builds on the dash-mpd crate.
With an installed Rust development environment:
shell
cargo install dash-mpd-cli
``` dash-mpd-cli 0.1.0 Download content from a DASH streaming media manifest
USAGE:
dash-mpd-cli [OPTIONS]
ARGS:
OPTIONS:
--add-header
-h, --help
Print help information
--no-progress
Disable the progress bar
--no-xattr
Don't record metainformation as extended attributes in the output file
-o, --output <output>
Save media content to this file
--proxy <proxy>
-q, --quiet
--quality <quality>
Prefer best quality (and highest bandwidth) representation, or lowest quality [possible
values: best, worst]
--source-address <source-address>
Source IP address to use for network requests, either IPv4 or IPv6. Network requests
will be made using the version of this IP address (eg. using an IPv6 source-address will
select IPv6 network traffic).
--timeout <timeout>
Timeout for network requests (from the start to the end of the request), in seconds
--user-agent <user-agent>
-v, --verbose
Level of verbosity (can be used several times)
--version
```
If your filesystem supports extended attributes, the application will save the following metainformation in the output file:
user.xdg.origin.url
: the URL of the MPD manifestuser.dublincore.title
: the title, if specified in the manifest metainformationuser.dublincore.source
: the source, if specified in the manifest metainformationuser.dublincore.rights
: copyright information, if specified in the manifest metainformationYou can examine these attributes using xattr -l
(you may need to install your distribution's
xattr
package).
This crate is tested on the following platforms:
The underlying library dash-mpd-rs
has two methods for muxing audio and video streams together. If
the library feature libav
is enabled (which is not the default configuration), muxing support is
provided by ffmpeg’s libav library, via the ac_ffmpeg
crate. Otherwise, muxing is implemented by
calling ffmpeg
(and if that fails, vlc
) as a subprocess. The ffmpeg commandline application
implements a number of checks and workarounds to fix invalid input streams that tend to exist in the
wild. Some of these workarounds, but not all, are implemented here when using libav as a library, so
download support tends to be more robust with the default configuration (using ffmpeg or vlc as a
subprocess). The libav
feature currently only works on Linux.
This project is licensed under the MIT license. For more information, see the LICENSE-MIT
file.
Similar commandline tools that are able to download content from a DASH manifest:
youtube-dl and forks like yt-dlp are able to download content from a DASH manifest
streamlink -o /tmp/output.mp4
ffmpeg -i
vlc
gst-launch-1.0 playbin uri=
This application is able to download content from certain streams that do not work with other applications (for example xHE-AAC streams which are unsupported by ffmpeg, streamlink, VLC, gstreamer).
$ git clone https://github.com/emarsden/dash-mpd-cli
$ cd dash-mpd-cli
$ cargo build --release
$ target/release/dash-mpd-cli --help
The application can also be built statically with the musl-libc target on Linux. First install the MUSL C standard library on your system. Add linux-musl as a target to your Rust toolchain, then rebuild for the relevant target:
$ sudo apt install musl-dev
$ rustup target add x86_64-unknown-linux-musl
$ cargo build --release --target x86_64-unknown-linux-musl
Static musl-libc builds don't work with OpenSSL, which is why we disable default features on the reqwest crate and build it with rustls-tls support.