From c4298267b5b8dd5ab2f75636f84bed22bab35573 Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Thu, 31 Mar 2022 22:09:22 +0200 Subject: [PATCH] add infos about hls output --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 77e38116..3762fe3c 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ The main purpose of ffplayout is to provide a 24/7 broadcasting solution that pl - output: - **stream** - **desktop** + - **HLS** Requirements ----- @@ -105,6 +106,26 @@ But be careful with it, better test it multiple times! More informations in [Wiki](https://github.com/ffplayout/ffplayout_engine/wiki/Remote-URL-Source) +HLS output +----- + +For outputting to HLS, output parameters should look like: + +```yaml +out: + ... + + output_param: >- + ... + + -flags +cgop + -f hls + -hls_time 6 + -hls_list_size 600 + -hls_flags append_list+delete_segments+omit_endlist+program_date_time + -hls_segment_filename /var/www/html/live/stream-%09d.ts /var/www/html/live/stream.m3u8 +``` + Installation -----