Difference between revisions of "LibVLC"

From VideoLAN Wiki
Jump to navigation Jump to search
m (Libvlc moved to LibVLC: VLC should be spelled "VLC" not "vlc")
 
(130 intermediate revisions by 22 users not shown)
Line 1: Line 1:
The following is the simplest way to use libvlc with visual C++.
+
{{Lowercase}}
What you need is: libvlc.dll and the whole folder plugins; Copy the dll file and plugins folder into your Debug or Release directory.
+
The '''libVLC''' (VLC {{SDK}}) media framework can be embedded into an application to get multimedia capabilities.
  
1. Create VC console project
+
'''libVLC''' is a cross-platform audio and video API that provides a comprehensive multimedia API that can be used across mobile, server and desktop to render video and output audio as well as encode and stream.
2. Implement some functions to load libvlc.dll into your application:
 
  
Take a look at [http://www.videolan.org/developers/vlc/doc/doxygen/html/group__libvlc__old.html] to get more information about functions in libvlc.dll
+
Since VLC is based on libVLC, one should be able to have the same features that {{VLC}} has.
3. Create a command that is used to pass to libvlc.dll
 
This command is used to stream webcam to another machine:
 
  char ** commands = new char*[6];
 
  commands[0] = "testvlcconsole.exe"; //your application name
 
  commands[1] = "dshow://";
 
  commands[2] = ":dshow-vdev=Logitech QuickCam Pro 3000 (08B0)";
 
  commands[3] = ":dshow-adev=";
 
  commands[4] = ":dshow-size=176x144";
 
  commands[5] = ":sout=#transcode{vcodec=h264,vb=1024,scale=1}:duplicate{dst=std{access=udp,mux=ts,dst=192.168.0.155:1234}}";
 
  
4. Main program:
+
The libVLC media framework is already used by several applications; see [[LibVLC_Users|who uses libVLC?]]
- Initialize Library : load libvlc.dll and its functions
 
- Create VLC instance: id  = VLC_Create()
 
- Initialize VLC : VLC_Init(id, int, commands)
 
- Start playing: VLC_Play()
 
  
(Thanks neztol for the code)
+
== Features ==
 +
 
 +
libVLC notably can:
 +
* Play every media file formats, every codec and every streaming protocols ''(RTSP, RTMP, Multicast, HLS/Dash/HDS, etc..)''
 +
* Run on every platform, from desktop ''(Windows, Linux, Mac)'' to mobile ''(Android, iOS)'' and TVs ''(AppleTV, Android TV, Tizen)'' and Consoles ''(PS4/5, Xbox)''
 +
* Hardware and efficient decoding on every platform, up to 8K
 +
* Network browsing for distant filesystems ''(SMB, FTP, SFTP, NFS...)'' and servers ''(UPnP, DLNA)''
 +
* Playback of Audio CD, DVD and Bluray with menu navigation
 +
* Support for 8K and HDR, including tonemapping for SDR streams
 +
* Audio passthrough with SPDIF and HDMI, including for Audio HD codecs, like DD+, TrueHD or DTS-HD
 +
* Support for complex video and audio filters
 +
* Support for 360/VR video and 3D audio playback, including Ambisonics
 +
* Able to cast and stream to distant renderers, like Chromecast and UPnP renderers.
 +
 
 +
== libVLC, license and proprietary applications ==
 +
 
 +
Since libVLC is licensed under LGPLv2, one can do applications based on libVLC which are not licensed under the GPL ''(different open source licenses, or non-open source applications)''. One must comply with the LGPL terms, for libVLCcore, VLC plugins and libVLC.
 +
 
 +
What it means, in layman's terms, is that you can use libVLC in your app, without open sourcing it, as long as the modifications to the VLC core and plugins are re-shared to the users and community. Also, you need to separate clearly your app from libVLC ''(use of dynamic linking makes it much easier)''.<br>
 +
It is however strongly advised to only use LGPL plugins.
 +
 
 +
=== Proprietary plugins ===
 +
 
 +
It is possible to also have proprietary plugins around VLC, as long as you can comply to the LGPL, for all libraries involved.<br>
 +
Distribution must be separated.
 +
 
 +
Again, in layman's terms, if you have a proprietary plugin, you should:
 +
* use libvlccore as a dynamic library,
 +
* link your plugin to libvlccore and other LGPL libraries dynamically,
 +
* make sure libVLC does not depend on your specific plugin,
 +
* be able to remove the plugin and still have a working application.
 +
 
 +
== Documentation ==
 +
 
 +
Please refer to the [https://www.videolan.org/developers/vlc/doc/doxygen/html/group__libvlc.html Doxygen documentation], which is the reference documentation.
 +
 
 +
<u>''Make sure that the documentation matches the LibVLC version.''</u> (if not, you can build it from the source code)
 +
 
 +
Some further topics are covered here:
 +
 
 +
* [[LibVLC Memory Management]] explained: covers the basics on the <code>_new()</code>, <code>_retain()</code>, <code>_release()</code>.
 +
* [[LibVLC Media List Management]] explained: covers the basics on setting up a playlist.
 +
* [[GenerateLibFromDll|Generate a .lib for using libVLC on Windows]] (before libVLC 2.1.0)
 +
 
 +
 
 +
== Examples ==
 +
 
 +
=== Playback ===
 +
* [[LibVLC_Tutorial|Current version (1.1.x and later)]]
 +
* Gtk Player: {{VLCSourceFile|name=doc/libvlc/gtk_player.c}}
 +
* Qt Player: {{VLCSourceFile|name=doc/libvlc/QtPlayer/player.cpp}}
 +
* WxWidgets Player: {{VLCSourceFile|name=doc/libvlc/wx_player.cpp}}
 +
 
 +
=== Rendering and streaming ===
 +
* [[LibVLC_SampleCode_SDL|Use LibVLC in an SDL application]]
 +
* [[Stream_to_memory_(smem)_tutorial| Stream into a memory zone]]
 +
* Generate thumbnails using LibVLC: {{VLCSourceFile|name=doc/libvlc/vlc-thumb.c}}
 +
* Quick DVD ripper: {{VLCSourceFile|name=doc/libvlc/libvlc_DVD_ripper.c}}
 +
 
 +
=== More complex examples ===
 +
* {{VLCSourceFolder|p=libvlc-demos.git|vlcinfo|l=MediaInfo clone}}
 +
* {{VLCSourceFolder|p=libvlc-demos.git|webcam|l=Webcam / Cheese clone}}
 +
 
 +
=== libVLC on Android ===
 +
* [https://code.videolan.org/videolan/libvlc-android-samples LibVLC on Android sample]
 +
 
 +
=== VLCKit for Cocoa (iOS/macOS) ===
 +
You can find details on features and implementation on a [[VLCKit|designated page]].
 +
 
 +
==== macOS ====
 +
* [https://code.videolan.org/videolan/VLCKit/tree/master/Examples/macOS/BasicPlayerWithPlaylist Simple playlist player for macOS].
 +
* [https://code.videolan.org/videolan/VLCKit/tree/master/Examples/macOS/iPodConverter iPod Converter for macOS].
 +
* [https://code.videolan.org/videolan/VLCKit/tree/master/Examples/macOS/FlashVideoDownloader Flash Video Downloader for macOS].
 +
 
 +
==== iOS ====
 +
* [https://code.videolan.org/videolan/VLCKit/tree/master/Examples/iOS/SimplePlayback Simple player for iOS].
 +
* [https://code.videolan.org/videolan/VLCKit/tree/master/Examples/iOS/DropIn-Player Drop-in player for integration in iOS apps].
 +
 
 +
=== Crossplatform .NET/Mono support with LibVLCSharp ===
 +
* [https://code.videolan.org/videolan/LibVLCSharp/tree/master/Samples Simple playback samples (iOS/Android/Mac/Windows/Xamarin.Forms)].
 +
* [https://code.videolan.org/mfkl/libvlcsharp-samples Advanced samples].
 +
 
 +
=== Outdated samples ===
 +
* [[LibVLC_Tutorial_0.9|Versions 0.9.x and 1.0.x]]
 +
* [[LibVLC_Tutorial_086c|Version 0.8.6]]
 +
* [[LibVLC_Visual_C++|Visual C++]] '' (uses "old" legacy API) ''
 +
* [[IceVLCPlayer|VCL component for Delphi]] (out-of-date)
 +
 
 +
== Language & platform bindings ==
 +
LibVLC is a C library. It has bindings to the following languages and frameworks:
 +
* C++, using the [https://code.videolan.org/videolan/libvlcpp libvlcpp] library
 +
* The [[Web plugin]] for ActiveX (e.g. MSIE) and NPAPI (e.g. Firefox)
 +
* [http://WebChimera.org WebChimera] browser plugin with [http://nwjs.io/ NW.js] support
 +
* [https://github.com/RSATom/WebChimera.js WebChimera.js] - another way to bind libvlc to node.js/io.js/NW.js/Electron
 +
* [[VLCKit|Objective-C/Swift for iOS and macOS]]
 +
* [[Perl bindings|Perl]]
 +
* [[PythonBinding|Python]]
 +
* [http://phonon.kde.org/ Phonon (Qt/KDE) in C++]
 +
* [[Java bindings|Java]]
 +
* [https://code.videolan.org/videolan/vlc-android/tree/master/libvlc/jni Java/Scala/Kotlin/JNI Android]
 +
* [https://code.videolan.org/videolan/libvlcsharp C#/F#/.NET]
 +
* [https://code.videolan.org/videolan/vlc-winrt/tree/master/modules/libvlcppcx C++/CX]
 +
* [https://github.com/adrg/libvlc-go Go]
 +
* [https://github.com/garkimasera/vlc-rs Rust]
 +
* [http://github.com/RSATom/QmlVlc QmlVlc] - Qt 5 QML binding
 +
* [https://github.com/vlc-qt/vlc-qt VLC-Qt] - Qt bindings
 +
* [[wxVLCBackend|wxWidgets MediaCtrl backend]] also in C++
 +
* [[Using libvlc with Delphi]]
 +
* [http://sourceforge.net/projects/paslibvlc/ Pascal/Delphi]
 +
* [http://wiki.tcl-lang.org/48382 Tcl]
 +
* [[ActiveX]] with the built-in VLC browser plugin for MSIE (obsolete)
 +
 
 +
== Compiling ==
 +
To build LibVLC you need [[VLC source code]] and follow [[Compile_VLC|VLC compilation instructions]] since LibVLC it is directly shipped in VLC source code.<br />
 +
You will find headers in vlc-src/include/vlc and libvlc.so binaries in the ''hidden'' folder vlc-src/lib/.libs.<br />
 +
When using your custom LibVLC build you will need to define the environment variable <var>VLC_PLUGIN_PATH</var> pointing to VLC modules located in vlc-src/modules.
 +
 
 +
[[Category:LibVLC|*]]

Latest revision as of 03:47, 2 November 2021

The libVLC (VLC SDK) media framework can be embedded into an application to get multimedia capabilities.

libVLC is a cross-platform audio and video API that provides a comprehensive multimedia API that can be used across mobile, server and desktop to render video and output audio as well as encode and stream.

Since VLC is based on libVLC, one should be able to have the same features that VLC media player has.

The libVLC media framework is already used by several applications; see who uses libVLC?

Features

libVLC notably can:

  • Play every media file formats, every codec and every streaming protocols (RTSP, RTMP, Multicast, HLS/Dash/HDS, etc..)
  • Run on every platform, from desktop (Windows, Linux, Mac) to mobile (Android, iOS) and TVs (AppleTV, Android TV, Tizen) and Consoles (PS4/5, Xbox)
  • Hardware and efficient decoding on every platform, up to 8K
  • Network browsing for distant filesystems (SMB, FTP, SFTP, NFS...) and servers (UPnP, DLNA)
  • Playback of Audio CD, DVD and Bluray with menu navigation
  • Support for 8K and HDR, including tonemapping for SDR streams
  • Audio passthrough with SPDIF and HDMI, including for Audio HD codecs, like DD+, TrueHD or DTS-HD
  • Support for complex video and audio filters
  • Support for 360/VR video and 3D audio playback, including Ambisonics
  • Able to cast and stream to distant renderers, like Chromecast and UPnP renderers.

libVLC, license and proprietary applications

Since libVLC is licensed under LGPLv2, one can do applications based on libVLC which are not licensed under the GPL (different open source licenses, or non-open source applications). One must comply with the LGPL terms, for libVLCcore, VLC plugins and libVLC.

What it means, in layman's terms, is that you can use libVLC in your app, without open sourcing it, as long as the modifications to the VLC core and plugins are re-shared to the users and community. Also, you need to separate clearly your app from libVLC (use of dynamic linking makes it much easier).
It is however strongly advised to only use LGPL plugins.

Proprietary plugins

It is possible to also have proprietary plugins around VLC, as long as you can comply to the LGPL, for all libraries involved.
Distribution must be separated.

Again, in layman's terms, if you have a proprietary plugin, you should:

  • use libvlccore as a dynamic library,
  • link your plugin to libvlccore and other LGPL libraries dynamically,
  • make sure libVLC does not depend on your specific plugin,
  • be able to remove the plugin and still have a working application.

Documentation

Please refer to the Doxygen documentation, which is the reference documentation.

Make sure that the documentation matches the LibVLC version. (if not, you can build it from the source code)

Some further topics are covered here:


Examples

Playback

Rendering and streaming

More complex examples

libVLC on Android

VLCKit for Cocoa (iOS/macOS)

You can find details on features and implementation on a designated page.

macOS

iOS

Crossplatform .NET/Mono support with LibVLCSharp

Outdated samples

Language & platform bindings

LibVLC is a C library. It has bindings to the following languages and frameworks:

Compiling

To build LibVLC you need VLC source code and follow VLC compilation instructions since LibVLC it is directly shipped in VLC source code.
You will find headers in vlc-src/include/vlc and libvlc.so binaries in the hidden folder vlc-src/lib/.libs.
When using your custom LibVLC build you will need to define the environment variable VLC_PLUGIN_PATH pointing to VLC modules located in vlc-src/modules.