Audio Joiner — Merge DASH Audio Files
Extract audio from video files then join tracks. Suitable to merge DASH or M3U8 streams into a single file.
Audio Joiner — Merge DASH Audio Filesとは何ですか?
Audio Joiner — Merge DASH Audio Filesはbrian.girkoによって開発されたChromeの拡張機能で、その主な機能は「Extract audio from video files then join tracks. Suitable to merge DASH or M3U8 streams into a single file.」です。
拡張機能のスクリーンショット
Audio Joiner — Merge DASH Audio Files拡張機能のCRXファイルをダウンロード
Audio Joiner — Merge DASH Audio Files拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
There is a growing interest in streaming media tracks in segments to eliminate buffering delays and ensure a responsive player, even on low-quality networks. This extension is designed to address merging these DASH tracks by locally merging them into a single playable track, compatible with any standard media player. Users can set or remove delays between tracks before merging. To maintain quality, each track is initially converted to a PCM buffer, and then they are merged in the user-defined order with optional delays. The output format of this extension is WAV (equivalent to the "audio/wav" MIME type), which is a lossless but large format. To reduce file size, users can use online tools or browser extensions to convert the WAV format to a lossy but compressed format like MP3. Notes: - This extension operates entirely offline, with no data transmitted to or from a remote service. - Unlike some counterparts, this extension does not rely on native complements for the merging process. Instead, it leverages the robust built-in AudioContext component of HTML5.
拡張機能の基本情報
名前 | Audio Joiner — Merge DASH Audio Files |
ID | kdnhapgpmgmldieekcafjmnfpmpnemed |
公式URL | https://chromewebstore.google.com/detail/audio-joiner-%E2%80%94-merge-dash/kdnhapgpmgmldieekcafjmnfpmpnemed |
説明 | Extract audio from video files then join tracks. Suitable to merge DASH or M3U8 streams into a single file. |
ファイルサイズ | 109 KB |
インストール数 | 1,000 |
現在のバージョン | 0.2.1 |
最終更新日 | 2023-11-22 |
公開日 | 2020-01-11 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | brian.girko |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://webextension.org/listing/audio-joiner.html |
ヘルプページのURL | https://webextension.org/listing/audio-joiner.html |
対応言語 | de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.2.1", "name": "Audio Joiner \u2014 Merge DASH Audio Files", "description": "__MSG_description__", "default_locale": "en", "permissions": [ "storage" ], "background": { "service_worker": "worker.js" }, "offline_enabled": true, "homepage_url": "https:\/\/webextension.org\/listing\/audio-joiner.html", "icons": { "16": "\/data\/icons\/16.png", "32": "\/data\/icons\/32.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": [], "commands": { "_execute_action": [] } } |