I've been using VLC to stream my desktop over the network and it's great. However, I would like to stream only the contents of a specific window (like Alt + PrintScren works for screenshots).

Is there some way to do this on Windows?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted
+100

You have to specify the window coordinates + width and height.

VLC Command Line : Screen Input section

Capture 640x480 pixels in the top left corner:

 "C:\Program Files\VideoLAN\VLC\vlc.exe" --screen-width=640 --screen-height=480
link|improve this answer
This is a gread idea, though it requires some manual work (getting the window position and dimensions)! For some reason it won't work with global options but I got it to work with MRL specific options: "c:\Program Files\VideoLAN\VLC\vlc.exe" screen:// :screen-top=150 :screen-left=150 :screen-width=300 :screen-height=200 – Vlad Oct 6 '11 at 8:45
feedback

Your Answer

 
or
required, but never shown

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