I wanna code a simple HTML5 page for streaming video contents.
My video source is a H.264 TS over HTTP generated by VLC by a command line very similar to this:
vlc -vvv source --sout '#standard{access=http,mux=ts,dst=:9955/live}'
I've tried with JWPlayer and Flowplayer but none of them supports H.264 streams incapsulated in TS.
I cannot change the original vlc command line since it's running on an external server, but I can run another instance of vlc on my server to remux it in another container if needed (No reencoding since the source is already LQ). Any hint?