-
-
Save klaxa/44ae10accbbb2feef3ffd043d60fdf57 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[my_stream] | |
bind_address=127.0.0.1 | |
port=8080 | |
input=/path/to/file.mkv | |
formats=mkv,hls,dash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"stream_name": "my_stream", | |
"bind_address": "127.0.0.1", | |
"port": 8080, | |
"input": "/path/to/file.mkv", | |
"formats": [ "mkv", "hls", "dash" ] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Request stream as: http://<address>:<port>/<streamname>/<format> | |
For example: http://127.0.0.1:8080/my_stream/mkv | |
Or http://127.0.0.1:8080/my_stream/hls | |
This should redirect to a generated playlist file, same with dash. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment