vb.net - VLC with VB NET: How to rotate stream/video 180°? (Tools-Effects-Geometry-Zoom-Transform) -
i'm working "axvlcplugin21" through vb.net , can basic stuff play, pause, etc. want rotate video 180° cant find info this, can me working example vb net?
thank all.
from here assume should like:
var options = new array("--video-filter rotate{angle=180}"); // or: var options = "--video-filter rotate{angle=180}"; var id = vlc.playlist.add("file:///d:\video.mp4", "fancy name", options);
or maybe
var options = new array(":video-filter=rotate{angle=180}"); // or: var options = ":video-filter=rotate{angle=180}"; var id = vlc.playlist.add("file:///d:\video.mp4", "fancy name", options);
Comments
Post a Comment