Command line program to download HLS video from websites and m3u8 links.
Know more about HLS from howvideo.works and wikipedia.
There are some alternatives to vsd but they lack in some features like N_m3u8DL-CLI is not cross platform and m3u8-downloader has very few customizable options. There are also options like webvideo-downloader which open websites using chrome and captures the m3u8 links and then download it. A similar functionality can achieved with vsd too by using capture and collect features.
HD
, FHD
etc.AES-128
playlist decryption.Dependencies
CHROME OPTIONS
related flag. Visit releases for prebuilt binaries. You just need to copy that binary to any path specified in your PATH
environment variable.
bash
cargo install vsd
bash
$ wget https://github.com/clitic/vsd/releases/download/v0.1.2/vsd-v0.1.2-x86_64-unknown-linux-musl.tar.gz -O vsd-v0.1.2.tar.gz
$ tar -xzf vsd-v0.1.2.tar.gz -C /usr/local/bin/
$ chmod +x /usr/local/bin/vsd
$ rm vsd-v0.1.2.tar.gz
Android builds are compiled with android-ndk-r22b and targets API Level 30 it means binary is only supported by Android 11 and above. Also, see running on android.
bash
$ pkg install wget ffmpeg
$ wget https://github.com/clitic/vsd/releases/download/v0.1.2/vsd-v0.1.2-aarch64-linux-android.tar.gz -O vsd-v0.1.2.tar.gz
$ tar -xzf vsd-v0.1.2.tar.gz -C $PREFIX/bin/
$ chmod +x $PREFIX/bin/vsd
$ rm vsd-v0.1.2.tar.gz
For quick testing purposes you may use https://test-streams.mux.dev as direct input. These streams are used by hls.js for testing purposes.
bash
$ vsd <url | .m3u8> -o video.mp4
bash
$ vsd <url> --collect
bash
$ vsd --help
``` vsd 0.1.2 clitic clitic21@gmail.com Command line program to download HLS video from websites and m3u8 links.
USAGE: vsd.exe [OPTIONS]
ARGS: url | .m3u8 | .m3u
OPTIONS:
-a, --alternative Download alternative streams such as audio and subtitles
streams from master playlist instead of variant video streams
-b, --baseurl
CHROME OPTIONS:
--build Build http links for all uri present in .m3u8 file while collecting it.
Resultant .m3u8 file can be played and downloaded directly without the need of
--baseurl
flag. This option should must be used with --collect
flag only
--capture Launch Google Chrome to capture requests made to fetch .m3u8 (HLS) and .mpd
(Dash) files
--collect Launch Google Chrome and collect .m3u8 (HLS), .mpd (Dash) and subtitles from a
website and save them locally
--headless Launch Google Chrome without a window for interaction. This option should must
be used with --capture
or --collect
flag only
CLIENT OPTIONS:
--cookies --cookies "foo=bar;
Domain=yolo.local" https://yolo.local
. This option can be used multiple times
--enable-cookies
Enable cookie store which allows cookies to be stored
--header <key> <value>
Custom headers for requests. This option can be used multiple times
--proxy-address <PROXY_ADDRESS>
Set http or https proxy address for requests
--user-agent <USER_AGENT>
Update and set custom user agent for requests [default: "Mozilla/5.0 (Windows NT 10.0;
Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36"]
```
Install Rust
Install Openssl
Clone Repository
bash
git clone https://github.com/clitic/vsd.git
bash
cargo build --release
© 2022 clitic
This repository is licensed under the MIT license. See LICENSE for details.