Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 917 Bytes

linux-setup.md

File metadata and controls

29 lines (18 loc) · 917 Bytes

Getting started on LibVLCSharp for Linux

Back

This procedure was tested on ubuntu 20.10. If you have another distribution, make sure that all requirements are available, and adapt the following commands

  1. Install the .net core SDK
  2. Install libvlc:

For ubuntu:

sudo apt install libvlc-dev.

libvlc.so and libvlccore.so will be located at /usr/lib. Should you want to load the libvlc libraries from another location than /usr/lib, you'd need to set LD_LIBRARY_PATH.

You may need:

sudo apt install vlc

Install gtk-sharp (or monodevelop which uses it)

For ubuntu:

sudo apt install gtk-sharp2

For other platforms

If your application doesn't find libX11.so, you may need to install the libx11-dev package :

sudo apt install libx11-dev