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

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -