From 811cedb556cdf30dfe9cd8fa65b586f6a9df92c1 Mon Sep 17 00:00:00 2001 From: lambda Date: Sat, 17 Feb 2024 21:01:13 +0300 Subject: [PATCH 1/2] feat: improve hls config - add segments configuration - change directory --- main.liq | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/main.liq b/main.liq index f8dbb6e..e1992a2 100644 --- a/main.liq +++ b/main.liq @@ -63,8 +63,14 @@ output.icecast(%mp3, radio) output.file.hls( - temp_dir="/home/stream/tmp", - "/home/stream/hls", + id="output.hls", + playlist="livestream.m3u8", + segment_duration=2.0, + segments=5, + segments_overhead=5, + persist_at="state.config", + temp_dir="/hls", + "/hls", [ ("hi", %mp3(bitrate=320)), ("mid", %mp3(bitrate=160)), From 4ae10b957ae5c71f54869ef98de73b2e7b3c1993 Mon Sep 17 00:00:00 2001 From: lambda Date: Sat, 17 Feb 2024 21:02:48 +0300 Subject: [PATCH 2/2] chore(version): 0.4.0 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5474dd..ab99674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## 0.4.0 - 2024-02-17 +#### Features +- improve hls config - (811cedb) - lambda + +- - - + ## 0.3.3 - 2024-02-12 #### Bug Fixes - syntax fix - (7ff1b2b) - lambda