Command line program to download HLS video from a website, m3u8 url or from a local m3u8 file.
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. It can also replace webvideo-downloader.
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.0/vsd-v0.1.0-x86_64-unknown-linux-musl.tar.gz -O vsd-v0.1.0.tar.gz && tar -xzf vsd-v0.1.0.tar.gz -C /usr/local/bin/ && chmod +x /usr/local/bin/vsd && rm vsd-v0.1.0.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.
bash
wget https://github.com/clitic/vsd/releases/download/v0.1.0/vsd-v0.1.0-aarch64-linux-android.tar.gz -O vsd-v0.1.0.tar.gz && tar -xzf vsd-v0.1.0.tar.gz -C $PREFIX/bin/ && chmod +x $PREFIX/bin/vsd && rm vsd-v0.1.0.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.0 clitic clitic21@gmail.com Command line program to download HLS video from a website, m3u8 url or from a local m3u8 file.
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:
--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. Some websites have custom collector method for
other websites their is an comman collector method
--headless Launch Google Chrome without a window for interaction. This option 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.