ffplayout/README.md

146 lines
5.1 KiB
Markdown
Raw Normal View History

2021-05-28 10:31:55 +02:00
**ffplayout_engine**
2018-01-07 13:58:45 +01:00
================
2020-07-09 22:33:30 +02:00
2019-03-14 15:25:13 +01:00
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
2018-01-07 13:58:45 +01:00
2019-06-05 11:23:52 +02:00
The purpose with ffplayout is to provide a 24/7 broadcasting solution that plays a *json* playlist for every day, while keeping the current playlist editable.
2018-01-07 13:58:45 +01:00
2020-09-28 10:09:26 +02:00
**Check [ffplayout-frontend](https://github.com/ffplayout/ffplayout-frontend): web-based GUI for ffplayout**
2018-01-07 13:58:45 +01:00
2020-07-09 22:33:30 +02:00
**Features**
2018-01-07 13:58:45 +01:00
-----
- have all values in a separate config file
- dynamic playlist
2019-03-30 21:28:25 +01:00
- replace missing playlist or clip with a dummy clip
2021-05-28 10:31:55 +02:00
- playing clips from [watched folder](https://github.com/ffplayout/ffplayout_engine/wiki/Watch-Folder)
2018-01-07 13:58:45 +01:00
- send emails with error message
- overlay a logo
2021-04-28 08:28:38 +02:00
- overlay text, controllable through [messenger](https://github.com/ffplayout/messenger) or [ffplayout-frontend](https://github.com/ffplayout/ffplayout-frontend) (needs ffmpeg with libzmq)
2019-11-11 21:44:55 +01:00
- **EBU R128 loudness** normalization (single pass) (experimental)
2021-05-28 10:31:55 +02:00
- loop clip in playlist which `out` value is higher then its `duration`, see also [Loop Clip](https://github.com/ffplayout/ffplayout_engine/wiki/Loop-Clip)
2019-11-04 16:37:06 +01:00
- loop playlist infinitely
- trim and fade the last clip, to get full 24 hours
2019-07-21 00:54:06 +02:00
- when playlist is not 24 hours long, loop filler clip until time is full
2018-01-07 13:58:45 +01:00
- set custom day start, so you can have playlist for example: from 6am to 6am, instate of 0am to 12pm
2018-01-07 17:22:24 +01:00
- normal system requirements and no special tools
2019-06-06 18:30:51 +02:00
- no GPU power is needed
- stream to server or play on desktop
2019-10-31 22:21:24 +01:00
- on posix systems ffplayout can reload config with *SIGHUP*
- logging to files, or colored output to console
2019-09-04 21:39:33 +02:00
- add filters to input, if is necessary to match output stream:
2020-07-09 22:33:30 +02:00
- **yadif** (deinterlacing)
- **pad** (letterbox or pillarbox to fit aspect)
- **fps** (change fps)
- **scale** (fit target resolution)
- **aevalsrc** (if video have no audio)
- **apad** (add silence if audio duration is to short)
- **tpad** (add black frames if video duration is to short)
2021-05-28 10:31:55 +02:00
- add custom [filters](https://github.com/ffplayout/ffplayout_engine/tree/master/ffplayout/filters)
- add custom [arguments](https://github.com/ffplayout/ffplayout_engine/tree/master/ffplayout/config)
- different types of [output](https://github.com/ffplayout/ffplayout_engine/wiki/Outputs):
2020-07-09 22:33:30 +02:00
- **stream**
- **desktop**
- **HLS**
- **custom**
- Multi Channel
2018-01-07 13:58:45 +01:00
2019-06-06 18:30:51 +02:00
Requirements
-----
2020-07-09 22:33:30 +02:00
2019-08-12 15:15:51 +02:00
- python version 3.6+
2020-02-04 15:28:06 +01:00
- python module **watchdog** (only when `playlist_mode: False`)
2019-10-31 22:21:24 +01:00
- python module **colorama** if you are on windows
2021-02-04 16:26:07 +01:00
- python modules **PyYAML**, **requests**, **supervisor**
- **ffmpeg v4.2+** and **ffprobe** (**ffplay** if you want to play on desktop)
2019-12-14 20:21:35 +01:00
- if you want to overlay text, ffmpeg needs to have **libzmq**
2019-06-06 18:30:51 +02:00
- RAM and CPU depends on video resolution, minimum 4 threads and 3GB RAM for 720p are recommend
JSON Playlist Example
2018-01-07 13:58:45 +01:00
-----
```json
{
"channel": "Test 1",
"date": "2019-03-05",
"program": [{
"in": 0,
"out": 647.68,
"duration": 647.68,
2019-08-04 12:03:03 -04:00
"source": "/Media/clip1.mp4"
2019-03-12 21:13:58 +01:00
}, {
"in": 0,
"out": 149,
"duration": 149,
2019-08-04 12:03:03 -04:00
"source": "/Media/clip2.mp4"
2019-03-12 21:13:58 +01:00
}, {
"in": 0,
"out": 114.72,
"duration": 114.72,
2019-03-12 21:13:58 +01:00
"source": "/Media/clip3.mp4",
"category": "advertisement"
}, {
"in": 0,
"out": 2531.36,
2019-03-06 15:29:37 +01:00
"duration": 2531.36,
2019-03-12 21:13:58 +01:00
"source": "/Media/clip4.mp4",
"category": ""
}
]
}
2018-01-07 13:58:45 +01:00
```
2021-02-05 15:03:59 +01:00
**If you need a simple playlist generator check:** [playlist-generator](https://github.com/ffplayout/playlist-generator)
2021-02-10 11:35:35 +01:00
The playlist can be extend, to use custom attributes in your [filters](/ffplayout/filters/).
2021-02-05 15:03:59 +01:00
2020-07-09 22:33:30 +02:00
**Warning**
-----
2019-10-31 22:21:24 +01:00
(Endless) streaming over multiple days will only work when config have **day_start** value and the **length** value is **24 hours**. If you need only some hours for every day, use a *cron* job, or something similar.
Remote source from URL
2019-03-06 15:25:14 +01:00
-----
2020-07-09 22:33:30 +02:00
You can use sources from remote URL in that way:
2019-03-06 15:25:14 +01:00
```json
...
{
"in": 0,
"out": 149,
"duration": 149,
2019-03-13 14:59:05 +01:00
"source": "https://example.org/big_buck_bunny.webm"
2019-03-06 15:25:14 +01:00
}
```
2020-07-09 22:33:30 +02:00
2019-03-06 15:25:14 +01:00
But be careful with it, better test it multiple times!
2021-05-28 10:31:55 +02:00
More informations in [Wiki](https://github.com/ffplayout/ffplayout_engine/wiki/Remote-URL-Source)
2019-03-06 15:25:14 +01:00
2018-01-07 17:22:24 +01:00
Installation
-----
2020-07-09 22:33:30 +02:00
2020-02-04 14:38:05 +01:00
Check [INSTALL.md](docs/INSTALL.md)
2019-03-18 21:31:10 +01:00
2019-04-01 22:05:46 +02:00
Start with Arguments
2019-03-18 21:31:10 +01:00
-----
2020-07-09 22:33:30 +02:00
2019-03-18 21:31:10 +01:00
ffplayout also allows the passing of parameters:
2020-07-09 22:33:30 +02:00
2019-08-21 21:35:18 +02:00
- `-c, --config` use given config file
- `-f, --folder` use folder for playing
- `-l, --log` for user-defined log path, *none* for console output
2019-11-11 21:44:55 +01:00
- `-i, --loop` loop playlist infinitely
- `-m, --mode` set output mode: **desktop**, **hls**, **stream**, ...
2019-08-11 17:33:11 +02:00
- `-p, --playlist` for playlist file
2021-05-18 15:27:57 +02:00
- `-s, --start` set start time in *hh:mm:ss*, *now* for start at playlist begin
2019-11-11 21:44:55 +01:00
- `-t, --length` set length in *hh:mm:ss*, *none* for no length check
2019-03-18 21:31:10 +01:00
2019-08-11 17:33:11 +02:00
You can run the command like:
2019-03-18 21:31:10 +01:00
2020-07-09 22:33:30 +02:00
```SHELL
2021-02-04 16:26:07 +01:00
./ffplayout.py -l none -p ~/playlist.json -d -s now -t none -m desktop
2019-03-18 21:31:10 +01:00
```