VLC with VB NET: how to rotate the stream / video 180 °? (Effect Tools-Geometry-Zoom-Transform)

I work with "AxVLCPlugin21" through VB.Net, and I can do basic things like play, pause, etc. But now I want to rotate the video 180 °, but I can not find information about this, can you help me with a working example for vb net?

Thanks to everyone.

+4
source share
1 answer

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);
-1
source

Source: https://habr.com/ru/post/1684081/


All Articles