Go to file
2021-07-22 17:31:18 +02:00
.github Delete feature_request.md 2021-07-22 17:31:18 +02:00
docs update parameters 2021-06-08 09:27:56 +02:00
ffplayout loop filler when our > duration 2021-07-22 17:07:08 +02:00
tests use output mode from stdin 2021-07-04 13:36:51 +02:00
__init__.py add docstrings and clean code with pylint 2021-03-26 14:43:21 +01:00
.gitignore ignore mypy_cache 2021-05-28 14:06:34 +02:00
.pylintrc no consider-using-with warning 2021-06-01 10:12:59 +02:00
CONTRIBUTING.md update text 2021-07-22 17:12:51 +02:00
ffplayout.py change locate to import_module, migrate from os to pathlib 2021-06-01 10:13:47 +02:00
ffplayout.yml hard coded stop on error. for old behavior set stop_threshold to 0 2021-06-21 14:57:00 +02:00
LICENSE Update LICENSE 2018-03-06 17:07:43 +01:00
README.md rename repo 2021-05-28 10:31:55 +02:00
requirements-base.txt rearange requirements 2021-05-28 15:21:41 +02:00
requirements-dev.txt rearange requirements 2021-05-28 15:21:41 +02:00
requirements.txt include all 2021-05-28 15:23:42 +02:00

ffplayout_engine

made-with-python License: GPL v3

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.

Check ffplayout-frontend: web-based GUI for ffplayout

Features

  • have all values in a separate config file
  • dynamic playlist
  • replace missing playlist or clip with a dummy clip
  • playing clips from watched folder
  • send emails with error message
  • overlay a logo
  • overlay text, controllable through messenger or ffplayout-frontend (needs ffmpeg with libzmq)
  • EBU R128 loudness normalization (single pass) (experimental)
  • loop clip in playlist which out value is higher then its duration, see also Loop Clip
  • loop playlist infinitely
  • trim and fade the last clip, to get full 24 hours
  • when playlist is not 24 hours long, loop filler clip until time is full
  • set custom day start, so you can have playlist for example: from 6am to 6am, instate of 0am to 12pm
  • normal system requirements and no special tools
  • no GPU power is needed
  • stream to server or play on desktop
  • on posix systems ffplayout can reload config with SIGHUP
  • logging to files, or colored output to console
  • add filters to input, if is necessary to match output stream:
    • 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)
  • add custom filters
  • add custom arguments
  • different types of output:
    • stream
    • desktop
    • HLS
    • custom
  • Multi Channel

Requirements

  • python version 3.6+
  • python module watchdog (only when playlist_mode: False)
  • python module colorama if you are on windows
  • python modules PyYAML, requests, supervisor
  • ffmpeg v4.2+ and ffprobe (ffplay if you want to play on desktop)
  • if you want to overlay text, ffmpeg needs to have libzmq
  • RAM and CPU depends on video resolution, minimum 4 threads and 3GB RAM for 720p are recommend

JSON Playlist Example

{
    "channel": "Test 1",
    "date": "2019-03-05",
    "program": [{
            "in": 0,
            "out": 647.68,
            "duration": 647.68,
            "source": "/Media/clip1.mp4"
        }, {
            "in": 0,
            "out": 149,
            "duration": 149,
            "source": "/Media/clip2.mp4"
        }, {
            "in": 0,
            "out": 114.72,
            "duration": 114.72,
            "source": "/Media/clip3.mp4",
            "category": "advertisement"
        }, {
            "in": 0,
            "out": 2531.36,
            "duration": 2531.36,
            "source": "/Media/clip4.mp4",
            "category": ""
        }
    ]
}

If you need a simple playlist generator check: playlist-generator

The playlist can be extend, to use custom attributes in your filters.

Warning

(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

You can use sources from remote URL in that way:

...
        {
            "in": 0,
            "out": 149,
            "duration": 149,
            "source": "https://example.org/big_buck_bunny.webm"
        }

But be careful with it, better test it multiple times!

More informations in Wiki

Installation

Check INSTALL.md

Start with Arguments

ffplayout also allows the passing of parameters:

  • -c, --config use given config file
  • -f, --folder use folder for playing
  • -l, --log for user-defined log path, none for console output
  • -i, --loop loop playlist infinitely
  • -m, --mode set output mode: desktop, hls, stream, ...
  • -p, --playlist for playlist file
  • -s, --start set start time in hh:mm:ss, now for start at playlist begin
  • -t, --length set length in hh:mm:ss, none for no length check

You can run the command like:

./ffplayout.py -l none -p ~/playlist.json -d -s now -t none -m desktop