I'm working with "AxVLCPlugin21" Through VB.Net and I can do the basic stuff like play, pause, etc. But now I want to rotate a video 180° but i cant find info about this, can you help me with a working example for vb net?
Thank you all.
1 Answers
Answers 1
From here I assume you should do something 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);
0 comments:
Post a Comment