Installing GStreamer Spotify plugin: Difference between revisions
Jump to navigation
Jump to search
(Created page with "To play spotify songs you need a gstreamer spotify plugin from the gst-plugins-rs package usually not available on most systems. Also, currently it is necessary to use a modified version of the plugin. git clone https://gitlab.freedesktop.org/kingosticks/gst-plugins-rs cd gst-plugins-rs git checkout spotify-uri-handler cargo cbuild --release -p gst-plugin-spotify sudo cp ./target/x86_64-unknown-linux-gnu/release/libgstspotify.so /usr/lib64/gstreamer-...") |
No edit summary |
||
Line 1: | Line 1: | ||
To play spotify songs you need | 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. | ||
git clone https://gitlab.freedesktop.org/ | git clone https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git | ||
cd gst-plugins-rs | cd gst-plugins-rs | ||
cargo cbuild --release -p gst-plugin-spotify | cargo cbuild --release -p gst-plugin-spotify | ||
sudo cp ./target/x86_64-unknown-linux-gnu/release/libgstspotify.so /usr/lib64/gstreamer-1.0/ | sudo cp ./target/x86_64-unknown-linux-gnu/release/libgstspotify.so /usr/lib64/gstreamer-1.0/ |
Revision as of 22:49, 12 June 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.
git clone https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git cd gst-plugins-rs cargo cbuild --release -p gst-plugin-spotify sudo cp ./target/x86_64-unknown-linux-gnu/release/libgstspotify.so /usr/lib64/gstreamer-1.0/