New to Telerik UI for WinForms? Download free 30-day trial

How to play video files

Problem

A common question that we see from our Windows Forms customers is how to play video files in their WinForms applications. This article aims to answer this question by providing guidance on some of the possible means to achieve this.

Solution

In order to play multimedia in your WinForms application there is a plenty of options. We will pay attention to the most widely spread and easy to achieve approaches.

how-to-play-video-files 001

Embed the Windows Media Player

Let’s start with an approach which is already available with Windows and the Windows Forms development environment. This is how to embed the Windows Media Player in your application through the Toolbox in Visual Studio. Please follow the steps below:

1. Right-click within the Toolbox, and then select Choose Items. This opens the Customize Toolbox dialog box.

2. On the COM Components tab, select Windows Media Player. If Windows Media Player does not appear in the list, click Browse, and then open Wmp.dll, which should be in the Windows\System32 folder.

3. Click OK. The Windows Media Player control will be placed on the current Toolbox tab.

Thus, the Windows Media Player will be added as an AxWindowsMediaPlayer object to your form and you can add it as any other control from the Toolbox.  Set the URL property to specify the name of the clip to play. Then, just run the application and click the Play button. The Ctlcontrols property gets an IWMPControls interface that provides a way to manipulate the playback of a media item. All supported file types are listed here.

Vlc.DotNet

VLC is a very popular, multiplatform, open-source media player that can read a wide range of media. All of its features are available to application developers thanks to the LibVLC framework. Vlc.DotNet is a .NET wrapper around LibVLC which hosts the audio/video capabilities of the VLC libraries. It runs on any .NET version starting from .NET 2.0 and can be easily integrated in WinForms. Here are the steps that you need to perform in order to integrate the VLC player in your WinForms application:

1. Install the Vlc.DotNet.Forms NuGet Package which will automatically add the following references to your project: Vlc.DotNet.Core, Vlc.DotNet.Core.Interops, Vlc.DotNet.Forms

2. Right-click within the Toolbox and select Add Tab option from the context menu. Drag the Vlc.DotNet.Forms.dll from the project’s folder to the newly created tab in the Toolbox. Now, the VlcControl is added and you can drag it from the Toolbox to the form.

3. You can find instructions how to get libvlc here.

4. Subscribe to the VlcControl.VlcLibDirectoryNeeded event at design time. In the event handler, it is necessary to specify the VlcLibDirectoryNeededEventArgs.VlcLibDirectory. Here is a sample code snippet: 

private void myVlcControl_VlcLibDirectoryNeeded(object sender, Vlc.DotNet.Forms.VlcLibDirectoryNeededEventArgs e)
{
    if (IntPtr.Size == 4)
        e.VlcLibDirectory = new DirectoryInfo(@"..\..\lib\x86\");
    else
        e.VlcLibDirectory = new DirectoryInfo(@"..\..\lib\x64\");
}

5. You can specify the video file to be played by using the SetMedia method. The Play method plays the specified video: 

FileInfo fi = new FileInfo("file path");
this.vlcControl1.SetMedia(fi);
this.vlcControl1.Play();

You can refer to the public repository at the following link: https://github.com/ZeBobo5/Vlc.DotNet/blob/develop/README.md. All supported formats by VLC are listed here.

A complete sample application can be found here. It contains two projects: one that demonstrates how to embed the Windows Media Player and another that shows how to use the open-source Vlc.DotNet.

In this article