Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iliya-gr/mediasegmenter
HLS media segmenter.
https://github.com/iliya-gr/mediasegmenter
ffmpeg hls libav video
Last synced: about 2 months ago
JSON representation
HLS media segmenter.
- Host: GitHub
- URL: https://github.com/iliya-gr/mediasegmenter
- Owner: iliya-gr
- Created: 2012-08-13T19:22:33.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-09-06T06:09:45.000Z (over 6 years ago)
- Last Synced: 2024-08-03T16:09:20.351Z (5 months ago)
- Topics: ffmpeg, hls, libav, video
- Language: Shell
- Homepage:
- Size: 123 KB
- Stars: 54
- Watchers: 7
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-video - iliya-gr/mediasegmenter - HLS media segmenter. (HLS / Talks Presentations Podcasts)
README
# Mediasegmenter
An attempt to create replacement for mediafilesegmenter and mediastreamsegmenter for Linux operation system.
## Usage
### Video on demand
To create VOD playlist with default parameters:
```bash
mediasegmenter -f /output_path source.mp4
```### Live
Create html page with video tag:
```html
```
```bash
mkfifo stream
ffmpeg -re -y -i big_buck_bunny_1080p_h264.mov -c copy -bsf h264_mp4toannexb -f mpegts stream
mediasegmenter -f /var/www/path_to_video_directory --live -w 5 --delete-files stream
```