Live Stream Downloader

Detect and Download M3U8 HLS Streams (HTTP Live Stream) in multiple threads to your local disk

什么是Live Stream Downloader?

Live Stream Downloader是由chandler.stimson开发的Chrome扩展程序,该扩展的主要功能是“Detect and Download M3U8 HLS Streams (HTTP Live Stream) in multiple threads to your local disk”。

扩展截图

screenshot

下载Live Stream Downloader扩展crx文件

下载Live Stream Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension detects M3U8 streaming formats on the active tab and offers to download these segmented streams as a single file to the user's local disk. 

This extension detects all possible video qualities and uses direct disk writing to store segments. So there is no need to have a recovery plan from a possible crash. Your data is written instantly to the local file and is ready to use. It also merges all segments automatically when the file is fetched. To improve download capability, the extension also sets the referrer header of the original page.

This extension uses multiple threads to download the HLS stream to increase the downloading speed and stability. Also, it supports resuming the download process when there is a network failure (Thanks to the TDM.JS engine).

How to use it:
1. Go to a streaming website like https://videojs.com/
2. Wait until the toolbar color changes
3. Click on the toolbar button once to select a quality
4. Wait until the download is over. You can see the progress as a badge text.

Features:
1. Download HSL Streams
2. Detect any audio, video, or media streams on the active tab
3. Uses multi-threading to increase download speed
4. Write directly to the disk
5. Supports detecting many audio and video formats
6. Retries several times to fetch each segment even if downloading is broken or you get disconnected from the internet for a short period.
7. Keep awake while downloading a file (this feature is optional; use Ctrl + P or Command + P when the interface is open to enable it)
8. Download any arbitrary file with multiple threads and network failure protection (copy the link and use Ctrl + V or Command + V to add it as a new job to the interface)
9. Unlimited retires. The extension uses multiple threads to fetch the data as fast as possible. If a thread breaks, the extension retries several times to reconnect to the server. Even after multiple tries, the extension pauses the downloading process and displays a prompt to resume when the network issue is fixed.
10. Suitable to download very large files for two reasons: 1) It is the fastest downloader because of multiple thread fetching. 2) it writes directly to the disk, so there is no need to move the file from the internal storage to the local disk later.

Use Cases:
1. You want to store a multi-segmented stream to your local disk for later use.
2. On an unstable network, you can use this extension to fetch a video file and start watching it with your media player even when it is not yet fully downloaded.

Extra Features:
1. You can download any file with this tool. Just drag and drop the link to the interface. Since it uses multiple simultaneous threads to fetch data, you can get the file a lot faster. Also, the downloader is protecting you against network failures and resumes interrupted downloads.
2. This downloader writes directly to the disk and can handle a download speed of about 300 MBytes / seconds. This is the best you can get even with native download managers.

Content Creators:
If for any reason, you want this extension to ignore your website, please open a bug report on the GitHub repository.                    

扩展基本信息

名称 Live Stream Downloader Live Stream Downloader
ID looepbdllpjgdmkpdcdffhdbmpbcfekj
官方URL https://chromewebstore.google.com/detail/live-stream-downloader/looepbdllpjgdmkpdcdffhdbmpbcfekj
简介 Detect and Download M3U8 HLS Streams (HTTP Live Stream) in multiple threads to your local disk
文件大小 95.11 KB
安装次数 294,031
当前版本 0.4.2
更新时间 2023-11-30
上架时间 2020-06-15
评分 4.30/5 共313次评分
开发者 chandler.stimson
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/chandler-stimson/live-stream-downloader/
支持的语言 de,en,fr,nl,da,et,it,hu,fi,cs,el,bg,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.4.2",
    "name": "Live Stream Downloader",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest",
        "declarativeNetRequestWithHostAccess",
        "scripting",
        "alarms"
    ],
    "optional_permissions": [
        "power"
    ],
    "host_permissions": [
        "*:\/\/*\/*.flv*",
        "*:\/\/*\/*.avi*",
        "*:\/\/*\/*.wmv*",
        "*:\/\/*\/*.mov*",
        "*:\/\/*\/*.mp4*",
        "*:\/\/*\/*.pcm*",
        "*:\/\/*\/*.wav*",
        "*:\/\/*\/*.mp3*",
        "*:\/\/*\/*.aac*",
        "*:\/\/*\/*.ogg*",
        "*:\/\/*\/*.wma*",
        "*:\/\/*\/*.m3u8*"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/hls-downloader.html",
    "background": {
        "service_worker": "worker.js"
    },
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "38": "\/data\/icons\/38.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "action": {
        "default_title": "Download HLS Streams"
    }
}