Page 1 of 1

get the video from tv tune card and plays that video local w

Posted: 07 Sep 2009 11:13
by abheesree
Hi there..

i am trying to do a small web application that gets the video from tv
tune card using vlc and plays that video on a webpage onthe same machine...

if you have any idea how to do this please let me know,

eagerly waiting for your reply,,

Thank you,
Srikanth

Re: get the video from tv tune card and plays that video local w

Posted: 07 Sep 2009 16:22
by Yaffle
Example:
starting vlc streaming from tuner (v4l)
./startVLC 0 1 0 112500 12345
# vdev adev norm frequency port

Code: Select all

cvlc -vvv --volume 512 v4l:// \ :v4l-vdev="/dev/video$1" \ :v4l-adev="/dev/dsp$2" \ :v4l-norm=$3 \ :v4l-frequency=$4 \ :v4l-caching=600 \ :v4l-chroma="" \ :v4l-fps=-1 \ :v4l-samplerate=32000 \ :v4l-channel=-1 \ :v4l-tuner=-1 \ :v4l-audio=-1 \ :v4l-stereo \ :v4l-width=384 \ :v4l-height=288 \ :v4l-brightness=30000 \ :v4l-colour=-1 \ :v4l-hue=-1 \ :v4l-contrast=40000 \ :no-v4l-mjpeg \ :v4l-decimation=1 \ :v4l-quality=100 \ --sout-asf-title="H6TV$2 www.hostel6.ru" \ --sout-keep \ --sout "#transcode{vcodec=DIV3,vb=1024,scale=1,acodec=mp3,scale=1,ab=96,channels=2,deinterlace=x}:std{access=http,mux=asf,dst=:$5}" --ttl 12 &

Re: get the video from tv tune card and plays that video local w

Posted: 08 Sep 2009 09:15
by abheesree
im using windows...

and im new to vlc

please tell me how to do that