Skip to content

Installation on Linux

Patrice Ferlet edited this page Oct 20, 2023 · 2 revisions

Linux only needs to install distribution packages of gstreamer and gstreamer devel. You probably already have compilers and needed libraries for Fyne if you followed the official installation page.

So, what you need to add are:

On Fedora, it is:

  • gstreamer1-devel
  • gstreamer1-plugins-base-devel.x86_64

On Ubuntu, it should be:

  • libgstreamer1.0-dev
  • libgstreamer-plugins-base1.0-dev

You can then test the videotest example:

git clone https://github.com/metal3d/fyne-streamer
cd fyne-streamer
go run -v ./examples/videotest

Keep in mind that the first compilation could take a while, Go-Gst takes some times to compile the package.

Clone this wiki locally