How to stream Desktop using FFMPEG in windows??

I have tried ffmpeg -list_devices true -f dshow -i dummy

and after that this to stream

ffmpeg -f dshow  -i video="Chicony USB 2.0 Camera"  -r 30 -vcodec mpeg4 -q 12 -f mpegts        udp://192.168.2.7:6666?pkt_size=188?buffer_size=65535

Using this i got to stream the Camera.

What command i have to type to stream the Desktop in windows?

link|improve this question
feedback

migrated from stackoverflow.com Dec 28 '11 at 8:06

This question came from our site for professional and enthusiast programmers.

1 Answer

Download FFmpeg 32-bit

ffmpeg.zeranoe.com/builds

Install Visual C++ x86

microsoft.com/download/en/details.aspx?id=8328

Install ScreenCapturer

sourceforge.net/projects/screencapturer

Use

ffmpeg -f dshow -i video=screen-capture-recorder -r 24000/1001 -q 1 out.avi
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.