Friday, September 1, 2017

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

Leave a Comment

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); 
If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment