Jonathon Elwood wrote:
On 10/22/07, Ramiro Polla <ramiro at lisha.ufsc.br> wrote:
Ginanjar Nur Rahmat wrote:
Dear Ramiro,
Could you tell me how to use this in appl.? what function sequences to call? do you have some example? Attached patch is the latest version for vfwcap.
configure and make FFmpeg normally with MinGW. Then run:
ffmpeg -r 25 -f vfwcap -i 0 -y output.avi [...] Sorry to ask a basic question, but if this is used I noticed the input filename is 0. How would I point this to the real file to convert?
In linux this would be /dev/video0, but Windows doesn't think everything should be a file, so it doesn't create device files for the video devices. Instead, this number is passed as is to the VFW capture API, with 0 being the default device. Ramiro Polla