Click here to Skip to main content
Click here to Skip to main content

VLCWrapper - A Little C++-wrapper Around libvlc

By , 12 Mar 2012
 
VLCWrapper/VLCWrapper1.jpg

Introduction

This article presents a little C++-wrapper for the libvlc-library, which is the core component of the VLC media player. I was looking for an easy way to integrate video playback in my C++ applications. Because I've been using VLC for media playback for many years now, I started playing around with the VLC API. The result is a little wrapper around the libvlc-library. It provides basic media playback functionality. Since v.2.0 the  libvlc-library is released under the LGPL, so you can use it in commercial applications. All sourcecode in this arcticle is licensed under the CPOL. Please excuse any bugs because this wrapper is more a quick hack than a feature complete wrapper. ;)

For testing purposes, I wrote a simple media player which uses the VLCWrapper. It's included in the example above.

Background

The most valuable source of information about the VLC API for me was the developer section on the VLC website and the documented C-headers of the VLC source. The project website is a good starting point if you plan to code something with VLC or extend the VLCWrapper.

The C++-Interface of VLCWrapper to LIBVLC

The interface declared in "VLCWrapper.h" is small and the member functions are quite self-explanatory. To get a good overlook, I stripped of the comments. Check out the sources for more information.  

class VLCWrapper
{
    std::auto_ptr<VLCWrapperImpl> pImpl_;
 
public:
    VLCWrapper();
    ~VLCWrapper();
    void SetOutputWindow(void* pHwnd);
    void SetEventHandler(VLCEventHandler event, void* pUserData);
    void OpenMedia(const char* pMediaPathName);
    void Play();
    void Pause();
    void Stop();
    int64_t GetLength();
    int64_t GetTime();
    void SetTime(int64_t newTime);
    void Mute(bool mute = true);
    bool GetMute();
    int  GetVolume();
    void SetVolume(int volume);
};  

Using the Code

Using the VLCWrapper is easy. The first step would be to add a new VLCWraper as a member of your window class and a CStatic for video output:

#include "VLCWrapper.h"

class CVlcDialogDlg : public CDialog
{
    VLCWrapper vlcPlayer_; /// Our VLCWrapper.
    .
    .
    //{{AFX_DATA(CVlcDialogDlg)
    CStatic vlcControl_;  /// This CStatic will be used as device context by libvlc.
    . . . 
    //}}AFX_DATA

Now we can initialize the VLCWrapper in OnInitDialog():

BOOL CVlcDialogDlg::OnInitDialog()
{
    CDialog::OnInitDialog();

    vlcPlayer_.SetOutputWindow((void*)vlcControl_.GetSafeHwnd()); // the CStatic will be 
							          // used for video output

    vlcPlayer_.SetEventHandler(&HandleVLCEvents, this);           // Set handler for vlc events

The handler function for VLC events:

static void HandleVLCEvents(const VLCEvent* pEvent, void* pUserData)
{
    CVlcDialogDlg* pDlg = reinterpret_cast<CVlcDialogDlg*>(pUserData); 
 
    switch(pEvent->type)
    {
    case libvlc_MediaPlayerTimeChanged:
       TRACE("VLC_EVT_TIME_CHANGED: new_time %d[ms]\n",
              pEvent->u.media_player_time_changed.new_time);
       if(pDlg)
           pDlg->UpdatePosition();
       break;
    } 
}

Now everything is in place, and you can start playing media files. E.g., the "Load" and "Play" members look like this:

void CVlcDialogDlg::OnBnClickedButtonLoad()
{
    CFileDialog dlgFile(TRUE);
    if(dlgFile.DoModal()==IDOK)
    {
        CString file=dlgFile.GetPathName();
        vlcPlayer_.OpenMedia((LPCTSTR)file);
        vlcPlayer_.Play();  // start media after loading....
    }
}

void CVlcDialogDlg::OnBnClickedButtonPlay()
{
    vlcPlayer_.Play();
}

History

  • 03/12/2012 
    • Updated the project to use the VLC API 2.0.0.
    • Changed license to CPOL.  
  • 09/20/2011 
    • Added project files for Visual Studio 2010. 
  • 09/11/2010
    • Some bugfixes and optimizations, thanks to heretic13!
    • Build the demo with VLC 1.1.4.
    • Removed demo & source links to old VLCDialog versions which required VLC < 1.1.
  • 05/29/2010
    • Updated the project to use the VLC API 1.1
    • The wrapper now uses an auto_ptr for its Pimpl. I missed deleting the Pimpl in the first versions
    • Fixed a redraw error
    • Thanks to Haim Engler for the hint on the memory leak and the redraw problem!
  • 08/20/2009
    • Pimped VlcDialog (Resizing, Icon-Buttons)
    • Striped off dependency to "StdAfx.h" in class VLCWrapper and class VLCWrapperImpl
    • Replaced a deprecated function call to libvlc; now SetOutputWindow(void*) takes a void pointer to a window handle
  • 08/14/2009
    • Some fixes in the example listings
  • 08/11/2009
    • Initial release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Alex Skoruppa
NOKIA Location & Commerce
Germany Germany
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralThanksmemberMaxwellG9 May '13 - 1:38 
Questionhelpmemberangel_boom28 Mar '13 - 0:18 
GeneralMy vote of 5memberBartlomiej Filipek23 Mar '13 - 5:20 
QuestionProblems with http accessmemberMember 959508022 Nov '12 - 4:44 
AnswerRe: Problems with http accessmemberMember 959508022 Nov '12 - 21:39 
GeneralMy vote of 2membermshahbazm11 Nov '12 - 2:10 
QuestionCDialog and CStaticmemberhasnain26639 Nov '12 - 10:27 
SuggestionLoop the playbackmemberSkywalker200825 Sep '12 - 10:47 
QuestionActiver le désentrelacementmemberjeanmarc0424 Sep '12 - 5:22 
QuestionCreating project from beginmemberaleks301 Sep '12 - 23:36 
BugProblem with chars > 127 in media pathmemberfred250629 Aug '12 - 5:25 
QuestionCreating project from beginmemberaleks3021 Aug '12 - 0:53 
QuestionHow to play a video from resources? [modified]membersdiazdiaz13 Aug '12 - 23:28 
AnswerRe: How to play a video from resources?memberhuntkao15 Aug '12 - 22:21 
QuestionSupport for Win7?memberhabichnicht24 Jun '12 - 22:21 
Questionlink with 64 bit application?memberAlon Geri18 Mar '12 - 6:08 
AnswerRe: link with 64 bit application?memberfen22 Mar '12 - 23:14 
QuestionNice app - anyone have this in vb.net? if so please post. thanxmemberbwarehouse12 Mar '12 - 23:18 
Question.libs included in 2.0.0memberMember 85397381 Mar '12 - 3:46 
QuestionVLC 2.0memberDavide Zaccanti22 Feb '12 - 7:57 
NewslibVLC is switching to LGPLmemberJulien Lebot5 Feb '12 - 22:39 
GeneralRe: libVLC is switching to LGPLmemberAlex Skoruppa5 Feb '12 - 22:57 
GeneralRe: libVLC is switching to LGPLmemberRene Pilon12 Mar '12 - 4:55 
QuestionHelp with the Streaming API for VLC ...memberdaved900014 Dec '11 - 7:39 
AnswerRe: Help with the Streaming API for VLC ...memberdaved900015 Dec '11 - 8:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 12 Mar 2012
Article Copyright 2009 by Alex Skoruppa
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid