Page 1 of 1

How to crop (x1/y1/x2/y2) with plug-in ? Possible?

Posted: 24 Dec 2006 20:39
by WpgCameraMan
Ignore this, VLC can't do what I need :-(

Posted: 30 Dec 2006 08:09
by Allclone
Yes it can be done in the plugin, its kinda complicated but it works I just tried with 0.8.6 plugin. for the command

vlc.playlist.add(targetURL, null, options);

So for options I placed ":crop=320x240+0+80", this cropped the video and placed it in the somewhere in the middle of the video.

vlc.playlist.add(<file>/<URL>, null, ":crop=320x240+0+80");

basic option:
:crop=<width>x<height>+<left offset>+<top offset>

Hope this helps