Hi. I have made a python app (uses flask) that listens to requests and returns an m3u link.
If I simply return the URL, it works in VLC but not in TVH.
If I return the URL as a redirect, it still works in VLC and still not in TVH.
Is there a particular way I should return the URL so that TVH can play it?
Or maybe something I need to do with a pipe command inside TVH?
Cheers,
Chris
Edit: I have been having a play and this works...
pipe:///usr/bin/ffmpeg -i http://10.0.1.160:5000?channel=one -c copy -f mpegts pipe:1
Can anyone explain why I need to do it this way?