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

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -