create on the fly hls livestream when video is started and stream it to client

This commit is contained in:
2022-12-25 23:19:04 +01:00
parent af1de3a244
commit 5b8a63c0aa
7 changed files with 239 additions and 9 deletions

View File

@ -24,6 +24,7 @@ type FeaturesT struct {
type GeneralT struct {
VerboseLogging bool
ReindexPrefix string
TmpDir string
}
type FileConfT struct {
@ -44,6 +45,7 @@ func defaultConfig() *FileConfT {
General: GeneralT{
VerboseLogging: false,
ReindexPrefix: "/var/www/openmediacenter",
TmpDir: "/tmp/openmediacenter",
},
Features: FeaturesT{
DisableTVSupport: false,