Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kurusugawa-computer/m3u8tool
A HTTP Live Streaming (HLS) manipulation tool
https://github.com/kurusugawa-computer/m3u8tool
Last synced: about 2 months ago
JSON representation
A HTTP Live Streaming (HLS) manipulation tool
- Host: GitHub
- URL: https://github.com/kurusugawa-computer/m3u8tool
- Owner: kurusugawa-computer
- License: apache-2.0
- Created: 2019-05-31T16:42:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-03T03:16:23.000Z (almost 5 years ago)
- Last Synced: 2024-11-02T22:21:17.634Z (2 months ago)
- Language: Python
- Homepage: https://github.com/kurusugawa-computer/m3u8tool
- Size: 825 KB
- Stars: 2
- Watchers: 12
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# m3u8tool
HTTP Live Streaming (HLS) フォーマットファイルを取り扱うための CLI ツールです。# Features
* HLS フォーマットファイル (m3u8+ts) を分割 (split) できます。
* HLS フォーマットファイル (m3u8+ts) を結合 (cat) できます。
* HLS フォーマットファイル (m3u8+ts) を別の動画フォーマットと相互変換 (convert) できます。# Requirements
* python 3.5+
* ffmpeg 4.x (動画フォーマット変換する場合のみ)# Install
```shell
$ pip install m3u8tool
```https://pypi.org/project/m3u8tool/
# Usage
## HLS フォーマットファイル (m3u8+ts) を分割 (split)
`input.m3u8` を `{filename}-{index:04}.m3u8` に分割
```shell
$ m3u8tool split input.m3u8
````input.m3u8` を `3.0` 秒ごとに `output-{index:04}.m3u8` に分割
```shell
$ m3u8tool split -d 3.0 -m output-{index:04}.m3u8 input.m3u8
````input.m3u8` を `output-{index:04}.m3u8` と `output-{index:04}.ts` に分割
```shell
$ m3u8tool split -m output-{index:04}.m3u8 -t output-{index:04}.ts input.m3u8
```## HLS フォーマットファイル (m3u8+ts) を結合
`input-{index:04}.m3u8` を `output.m3u8` に結合
```shell
$ m3u8tool cat input-*.m3u8 output.m3u8
````input-{index:04}.m3u8` を `output.m3u8` と `output.ts` に結合
```shell
$ m3u8tool cat -t output.ts input-*.m3u8 output.m3u8
```## HLS フォーマットファイル (m3u8+ts) を別の動画フォーマットと相互変換
`input.mp4` を `output.m3u8` と `output.ts` に変換
```shell
$ m3u8tool convert input.mp4 output.m3u8
````input.m3u8` を `output.mp4` に変換
```shell
$ m3u8tool convert input.m3u8 output.mp4
```