Stream contents of a single window

9

3

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?

Vlad

Posted 2011-09-29T10:57:37.983

Reputation: 768

Answers

8

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

micke

Posted 2011-09-29T10:57:37.983

Reputation: 3 001

2This 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 – 2011-10-06T08:45:42.647