Now I have a new project that requires web page displaying TV content.
With the VLC.exe I was able to display TV channel by command line:
Code: Select all
vlc.exe dshow:// :dshow-vdev="WinTV HVR-950 Capture" :dshow-chroma=UYVY :dshow-tuner-frequency=63000000 :dshow-tuner-standard=0 :dshow-tuner-input=1
The Javascript I'm using: (the same code works for regular video streams such as http://xxxxx/xxx.mp4)
Code: Select all
vlcEmbed.playlist.add( 'dshow://', 'default', ':dshow-vdev="WinTV HVR-950 Capture" :dshow-chroma=UYVY :dshow-tuner-frequency=63000000 :dshow-tuner-standard=0 :dshow-tuner-input=1');
vlcEmbed.playlist.playItem(0);
Any hint is appreciated.