You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restreamer has a url to get player configs: https://[restreamer-domain]/channels/[GUID]/config.js
this returns the following script file (example): var playerConfig = {"autoplay":false,"mute":true, ... }}
I think it would be better to just return the json part, without "var playerConfig = ", that way it would be much more interoperable, without needing to instantiate script to get a var name, that is more hardcoded.
The text was updated successfully, but these errors were encountered:
Right, but if I want to use a different video webplayer than videojs or add some player plugins without changing Restreamer code, this would be very useful.
Thanks for your comment.
Restreamer has a url to get player configs:
https://[restreamer-domain]/channels/[GUID]/config.js
this returns the following script file (example):
var playerConfig = {"autoplay":false,"mute":true, ... }}
I think it would be better to just return the json part, without "var playerConfig = ", that way it would be much more interoperable, without needing to instantiate script to get a var name, that is more hardcoded.
The text was updated successfully, but these errors were encountered: