Platforms to show: All Mac Windows Linux Cross-Platform
Back to VLCMediaPlayerMBS class.
VLCMediaPlayerMBS.VideoAdjust(option as Integer) as Integer
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| property | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
option: See kAdjust* constants.
Options that take a different type value are ignored.
Using kAdjustEnable with value 0 stops adjust filter. With other values you start adjust filter.
(Read and Write computed property)
VLCMediaPlayerMBS.VideoAdjustFloat(option as Integer) as single
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| property | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
option: See kAdjust* constants.
Options that take a different type value are ignored.
(Read and Write computed property)
VLCMediaPlayerMBS.VideoGetCursor(num as Integer, byref px as Integer, byref py as Integer) as Boolean
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Coordinates are expressed in terms of the decoded video resolution, not in terms of pixels on the screen/viewport (to get the latter, you can query your windowing system directly).
Either of the coordinates may be negative or larger than the corresponding dimension of the video, if the cursor is outside the rendering area.
The coordinates may be out-of-date if the pointer is not located on the video rendering area. LibVLC does not track the pointer if it is outside of the video widget.
LibVLC does not support multiple pointers (it does of course support multiple input devices sharing the same pointer) at the moment.
num: number of the video (starting from, and most commonly 0)
px: get the abscissa.
py: get the ordinate.
Returns true on success, false if the specified video does not exist
VLCMediaPlayerMBS.VideoGetSize(num as Integer, byref px as UInt32, byref py as UInt32) as Boolean
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
num: number of the video (starting from, and most commonly 0)
px: get the pixel width [OUT]
py: get the pixel height [OUT]
Return true on success, false if the specified video does not exist.
VLCMediaPlayerMBS.VideoLogo(option as Integer) as Integer
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| property | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Options that take a different type value are ignored.
Passing kLogoEnable as option value has the side effect of starting (arg not 0) or stopping (arg 0) the logo filter.
(Read and Write computed property)
VLCMediaPlayerMBS.VideoMarquee(option as Integer) as Integer
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| property | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Setting kMarqueeEnable has the side effect of enabling (arg not 0) or disabling (arg 0) the marq filter.
(Read and Write computed property)
VLCMediaPlayerMBS.VideoMarqueeString(option as Integer) as String
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| property | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
(Read and Write computed property)
VLCMediaPlayerMBS.VideoSetCallback(width as integer, height as integer, CGContextHandle as integer = 0)
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
You can use CopyPicture and CopyMemory methods to query new frame content.
The hasNewFrame property tells you whether a new frame is available.
The plugin will optionally draw the frames into the CGContext you provide.
Please use CopyCGImage to get a CGImage from image buffer.
Some examples using this method:
VLCMediaPlayerMBS.VideoSetDeinterlace(Mode as string)
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Mode: Type of deinterlace filter, "" to disable.
VLCMediaPlayerMBS.VideoSetFormat(chroma as string, width as UInt32, height as UInt32, pitch as UInt32)
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
This only works in combination with SetVideoCallbacks().
chroma: a four-characters string identifying the chroma (e.g. "RV32" or "YUYV")
width: pixel width
height: pixel height
pitch: line pitch (in bytes)
All pixel planes are expected to have the same pitch.
VLCMediaPlayerMBS.VideoSetKeyInput(on as boolean)
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
By default and for historical reasons, keyboard events are handled by the LibVLC video widget.
On X11, there can be only one subscriber for key press and mouse click events per window. If your application has subscribed to those events for the X window ID of the video widget, then LibVLC will not be able to handle key presses and mouse clicks in any case.
This function is only implemented for X11 and Win32 at the moment.
on: true to handle key press events, false to ignore them.
VLCMediaPlayerMBS.VideoSetLogoString(option as Integer, logo as String)
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Options that take a different type value are ignored.
VLCMediaPlayerMBS.VideoSetMouseInput(on as boolean)
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
By default, those events are handled. This is needed for DVD menus to work, as well as a few video filters such as "puzzle".
This function is only implemented for X11 and Win32 at the moment.
on: true to handle mouse click events, false to ignore them.
VLCMediaPlayerMBS.VideoTakeSnapshot(num as Integer, path as string, width as Integer, height as Integer) as boolean
| Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
| method | VLC | MBS VLC Plugin | 12.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
If width AND height is 0, original size is used.
If width XOR height is 0, original aspect-ratio is preserved. (e.g. width = 0 and height = -1)
num: number of video output (typically 0 for the first/only one)
Path: the path where to save the screenshot to
Width: the snapshot's width
Height: the snapshot's height
Returns true on success, false if the video was not found
Some examples using this method:
The items on this page are in the following plugins: MBS VLC Plugin.