I need some HELP.
I am using a Kworld DVD Maker 2 (USB Device) to capture video and audio from an external device (Foxtel).
The supplied software is way too complex for my needs.
O/S is Windows 7 (32 bit)
I can Capture video and audio to a file using the VLC Gui (VLC media player 2.0.2 Twoflower), but I would like to set ud a batch process that would enable me to make the capture a "One Click" solution.
The following is my attempt, but all it does is bring up the GUI and the command window and no capture is done
The Kworld DVD MAker 2 appears as "USB Capture Device" in the Device Manager but appears in VLC as "USB 2861 Device" for Video and "Line (2- USB 2861 Device)" for Audio.
I would like to add Deinterlacing (Yadif 2 or Linea) as well as a time limit for the job.
Here is my attempt so far.... not much, I know Any HELP would be Very Much Appreciated
Code: Select all
set vlc="C:\Program Files\VideoLAN\VLC\vlc.exe"
%vlc% -vvv :dshow-vdev="USB 2861 Device" :dshow-adev="Line (2- USB 2861 Device)" :dshow-aspect-ratio=16\:9 :dshow-chroma= :dshow-fps=25 :no-dshow-config :no-dshow-tuner :dshow-tuner-channel=0 :dshow-tuner-frequency=0 :dshow-tuner-country=0 :dshow-tuner-standard=0 :dshow-tuner-input=0 :dshow-video-input=-1 :dshow-video-output=-1 :dshow-audio-input=-1 :dshow-audio-output=-1 :dshow-amtuner-mode=1 :dshow-audio-channels=0 :dshow-audio-samplerate=0 :dshow-audio-bitspersample=0 :live-caching=300{vcodec=MPEG-2,vb=8000,scale=1,acodec=A52/AC-3,ab=320,channels=2,samplerate=48000}:std{access=file,mux=ts,dst="G:\VLC\mytest.mpg"}
pause
exit
Mark