Downloads a live HLS stream.
hls-downloader [-V] [-h] [-q QUALITY] -o FILE stream_url
hls-downloader -q best -c 5 -o video.mp4 "https://......./stream.m3u8"
You need to have FFMPEG installed, even with the "merge using FFMPEG" feature disabled, as FFMPEG is still used to transmux the merged TS file into an MP4 file.
const download = require("node-hls-downloader").download;
await download({
quality: "best",
concurrency: 5,
outputFile: "video.mp4",
streamUrl: "https://......./stream.m3u8",
});
TypeScript is also supported, with types already provided.
Note: options marked with 🔒 are mandatory.
stream_url, streamUrl 🔒The URL to the stream (either the master file or a playlist).
--live, liveDownload the stream as a live feed, refreshing the playlist and downloading only new segments. Automatically stops when no new segments are found after a while.
false--ffmpeg-merge, mergeUsingFfmpegMerge TS segments using FFMPEG instead of basic concatenation. Not recommended, but you can use it if stuttering issues occur when merging the TS segments.
false--ffmpeg-path, ffmpegPathPath to the FFMPEG binary. Can be useful to target a specific version or install of FFMPEG.
ffmpeg--segments-dir, segmentsDirWhere the TS segments will be stored.
--merged-segments-file, mergedSegmentsFileLocation of the merged TS segments file.
-c, --concurrency, concurrencyHow many threads to use for downloading segments.
1-q, --quality, quality 🔒*Stream quality: worst, best, or max bandwidth.
* only mandatory if passing a master playlist stream URL
-o, --output-file, outputFile 🔒Target file to download the stream to. If it already exists, it will be overwritten.
-h, --header, httpHeadersHeaders to use when making HTTP requests. On the CLI, the header argument can be repeated. Format is "Name: value".
--quiet, loggerIn CLI, the quiet flag will disable all output except errors.
Using the API, you can provide a logger config, which is either null to disable logging completely, a function taking any number of arguments, or an object with two members, log and error, each being a function taking any number of arguments.
false in CLI, console in APIThe program is licensed under the Apache License 2.0.
$ claude mcp add hls-downloader \
-- python -m otcore.mcp_server <graph>