Live Stream Downloader

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

Live Stream Downloader là gì?

Live Stream Downloader là một tiện ích mở rộng Chrome được phát triển bởi chandler.stimson, và tính năng chính của nó là "Detect and Download M3U8 HLS Streams (HTTP Live Stream) in multiple threads to your local disk".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Live Stream Downloader

Tải xuống các tệp mở rộng Live Stream Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Live Stream Downloader Live Stream Downloader
ID looepbdllpjgdmkpdcdffhdbmpbcfekj
URL Chính Thức https://chromewebstore.google.com/detail/live-stream-downloader/looepbdllpjgdmkpdcdffhdbmpbcfekj
Mô tả Detect and Download M3U8 HLS Streams (HTTP Live Stream) in multiple threads to your local disk
Kích Thước Tệp 95.11 KB
Số Lần Cài Đặt 294,031
Phiên Bản Hiện Tại 0.4.2
Cập Nhật Lần Cuối 2023-11-30
Ngày Phát Hành 2020-06-15
Đánh Giá 4.30/5 Tổng số 313 Đánh Giá
Nhà Phát Triển chandler.stimson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chandler-stimson/live-stream-downloader/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}