├── .gitignore ├── LICENSE ├── README.md ├── configs ├── .keep ├── cfg.example └── cfg.example.j2 ├── data └── .keep ├── gen_event_config.py ├── global_config.example ├── hls-relive ├── check_released.pl ├── export-config.pl ├── gen-index-only.pl ├── genpage.pl ├── lib │ ├── Fahrplan.pm │ ├── HLS │ │ └── Playlist.pm │ └── Relive │ │ └── Config.pm ├── make-index.pl ├── record.pl ├── record_hls.sh ├── record_icedist.sh ├── scheduler.pl └── wrapper.sh ├── launcher.sh ├── manually-regen-playlist.sh ├── scripts ├── foreach-project.sh ├── gen-sprites.sh ├── get-fahrplan.sh ├── get-releases.sh └── update.sh └── system-configs ├── crontab ├── crossdomain.xml └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | global_config 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/README.md -------------------------------------------------------------------------------- /configs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/configs/cfg.example -------------------------------------------------------------------------------- /configs/cfg.example.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/configs/cfg.example.j2 -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen_event_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/gen_event_config.py -------------------------------------------------------------------------------- /global_config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/global_config.example -------------------------------------------------------------------------------- /hls-relive/check_released.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/check_released.pl -------------------------------------------------------------------------------- /hls-relive/export-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/export-config.pl -------------------------------------------------------------------------------- /hls-relive/gen-index-only.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/gen-index-only.pl -------------------------------------------------------------------------------- /hls-relive/genpage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/genpage.pl -------------------------------------------------------------------------------- /hls-relive/lib/Fahrplan.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/lib/Fahrplan.pm -------------------------------------------------------------------------------- /hls-relive/lib/HLS/Playlist.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/lib/HLS/Playlist.pm -------------------------------------------------------------------------------- /hls-relive/lib/Relive/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/lib/Relive/Config.pm -------------------------------------------------------------------------------- /hls-relive/make-index.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/make-index.pl -------------------------------------------------------------------------------- /hls-relive/record.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/record.pl -------------------------------------------------------------------------------- /hls-relive/record_hls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/record_hls.sh -------------------------------------------------------------------------------- /hls-relive/record_icedist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/record_icedist.sh -------------------------------------------------------------------------------- /hls-relive/scheduler.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/scheduler.pl -------------------------------------------------------------------------------- /hls-relive/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/hls-relive/wrapper.sh -------------------------------------------------------------------------------- /launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/launcher.sh -------------------------------------------------------------------------------- /manually-regen-playlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/manually-regen-playlist.sh -------------------------------------------------------------------------------- /scripts/foreach-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/scripts/foreach-project.sh -------------------------------------------------------------------------------- /scripts/gen-sprites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/scripts/gen-sprites.sh -------------------------------------------------------------------------------- /scripts/get-fahrplan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/scripts/get-fahrplan.sh -------------------------------------------------------------------------------- /scripts/get-releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/scripts/get-releases.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /system-configs/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/system-configs/crontab -------------------------------------------------------------------------------- /system-configs/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/system-configs/crossdomain.xml -------------------------------------------------------------------------------- /system-configs/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voc/hls-relive/HEAD/system-configs/nginx.conf --------------------------------------------------------------------------------