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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |