Skip to content
Andrew Lambert edited this page Apr 27, 2016 · 14 revisions

RB-libvlc

This project wraps libvlc, the open-source multimedia library behind VLC Media Player. It is designed and tested on Windows 7 using REALstuio 2011R4.3. Other platforms supported by libvlc should work, but have not been tested.

##Synopsis There are two main modes of operation: using the VLCPlayer class to play media without a GUI and the VLCMediaPlayer which provides a GUI. libvlc also supports playlists through a separate PlayList interface.

##Example

 Dim vlc As New VLCPlayer
 vlc.Media = GetFolderItem("C:\example\music.mp3")
 vlc.Play()
Clone this wiki locally