Installing GStreamer Spotify plugin: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
To play Spotify songs you need the GStreamer Spotify plugin from the gst-plugins-rs package, if you do not have it, you can build it from source this way. | To play Spotify songs you need the GStreamer Spotify plugin from the gst-plugins-rs package, if you do not have it, you can build it from source this way. | ||
Get the source | |||
git clone https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git | git clone https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git | ||
cd gst-plugins-rs | cd gst-plugins-rs | ||
sudo cp | Build and install: | ||
meson setup --buildtype=release --default-library=shared --wrap-mode=nodownload --auto-features=disabled -Dspotify=enabled build | |||
cd build | |||
ninja | |||
sudo cp libgstspotify.so /usr/lib64/gstreamer-1.0/ |
Latest revision as of 19:19, 26 October 2024
To play Spotify songs you need the GStreamer Spotify plugin from the gst-plugins-rs package, if you do not have it, you can build it from source this way.
Get the source
git clone https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git cd gst-plugins-rs
Build and install:
meson setup --buildtype=release --default-library=shared --wrap-mode=nodownload --auto-features=disabled -Dspotify=enabled build cd build ninja sudo cp libgstspotify.so /usr/lib64/gstreamer-1.0/