![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
|
Multimedia & Video Have multimedia question? ATI, Nvidia, Sound cards. Just ask here. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
First Cup of Ubuntu
![]() Join Date: Jun 2006
Beans: 2
|
[HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
The Audacious developers have removed support for Last.FM / Scrobbler in the most recent version. See http://boards.audacious-media-player...=3&t=112&p=408 for why.
I've successfully built the 2.2 plugin against 2.3 on Ubuntu Lucid (which just updated to 2.3). Here's (roughly) what I did. Code:
sudo aptitude install libcurl4-dev wget http://distfiles.atheme.org/audacious-plugins-2.2.tgz tar -zxvf audacious-plugins-2.2.tgz cd audacious-plugins-2.2 ./configure --enable-dependency-tracking --disable-esd --disable-pulse \ --disable-coreaudio --disable-icecast --disable-dockalbumart --disable-altivec \ --disable-sse2 --disable-mp3 --disable-libmadtest --disable-rocklight \ --disable-lirc --disable-evdevplug --disable-hotkey --disable-gnomeshortcuts \ --disable-statusicon --disable-aosd --disable-aosd-xcomp --disable-adplug \ --disable-vorbis --disable-flacng --disable-libFLACtest --disable-wavpack \ --disable-aac --disable-sndfile --disable-modplug --disable-ffaudio \ --disable-jack --disable-sid --disable-oss --disable-oss4 --disable-alsa \ --disable-amidiplug --disable-amidiplug-alsa --disable-amidiplug-flsyn \ --disable-amidiplug-dummy --disable-cdaudio --disable-streambrowser \ --enable-scrobbler --enable-lastfm --disable-neon --disable-mms \ --disable-mtp_up --disable-bluetooth --disable-paranormal --disable-xspf \ --disable-xmltest --disable-cue --disable-projectm --disable-projectm-1.0 \ --disable-filewriter --disable-filewriter_mp3 --disable-filewriter_vorbis \ --disable-filewriter_flac --disable-bs2b cd src/scrobbler/ make sudo make install cd ../lastfm/ make sudo make install Hope this helps and that someone else will slog through the mess of making it into a package. |
|
|
|
|
|
#2 |
|
First Cup of Ubuntu
![]() Join Date: Apr 2010
Beans: 2
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
A prerequisite is having the audacious-dev package installed.
After installing the scrobbler plugin is added to the General plugins tab in the Audacious preferences. I can confirm that it works just fine. |
|
|
|
|
|
#3 |
|
A Carafe of Ubuntu
![]() Join Date: Jul 2008
Beans: 142
Ubuntu 10.10 Maverick Meerkat
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Would someone be able to just post the plugin for download? Or does it actually require building on my specific machine?
|
|
|
|
|
|
#4 | |
|
First Cup of Ubuntu
![]() Join Date: Apr 2006
Location: Finland
Beans: 4
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Quote:
Code:
cd ~ wget http://fly5.kapsi.fi/misc/misc/aud2scrob/lastfm.so wget http://fly5.kapsi.fi/misc/misc/aud2scrob/scrobbler.so mv lastfm.so scrobbler.so ~/.local/share/audacious/Plugins/ |
|
|
|
|
|
|
#5 |
|
A Carafe of Ubuntu
![]() Join Date: Jul 2008
Beans: 142
Ubuntu 10.10 Maverick Meerkat
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Those work great. Thanks!
|
|
|
|
|
|
#6 |
|
First Cup of Ubuntu
![]() Join Date: Dec 2005
Beans: 3
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Tested here too, works perfectly.
Thanks |
|
|
|
|
|
#7 |
|
First Cup of Ubuntu
![]() Join Date: May 2010
Beans: 2
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Hi, would you mind to post somewhere the source codes to the plugins? I am using Debian Sid (testing) and I would like to try to compile and use the plugins as well (if it is not very obvious how to compile them, please add some brief howto, thanks), because I miss the scrobbler plugin. Best regards b.
|
|
|
|
|
|
#8 | |
|
First Cup of Ubuntu
![]() Join Date: May 2010
Beans: 2
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Quote:
|
|
|
|
|
|
|
#9 |
|
First Cup of Ubuntu
![]() Join Date: Apr 2009
Beans: 3
Ubuntu 10.04 Lucid Lynx
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Hi,
thanks for the code and plugins, however the plugins provided by fly5 didn't work for me (maybe cause x86_64). Little tweeking of togdon's code worked just fine: Code:
sudo aptitude install libcurl4-openssl-dev sudo aptitude install audacious-dev wget http://distfiles.atheme.org/audacious-plugins-2.2.tgz tar -zxf audacious-plugins-2.2.tgz cd audacious-plugins-2.2 # export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig # this shouldn't be necessary ./configure --enable-dependency-tracking --disable-esd --disable-pulse \ --disable-coreaudio --disable-icecast --disable-dockalbumart --disable-altivec \ --disable-sse2 --disable-mp3 --disable-libmadtest --disable-rocklight \ --disable-lirc --disable-evdevplug --disable-hotkey --disable-gnomeshortcuts \ --disable-statusicon --disable-aosd --disable-aosd-xcomp --disable-adplug \ --disable-vorbis --disable-flacng --disable-libFLACtest --disable-wavpack \ --disable-aac --disable-sndfile --disable-modplug --disable-ffaudio \ --disable-jack --disable-sid --disable-oss --disable-oss4 --disable-alsa \ --disable-amidiplug --disable-amidiplug-alsa --disable-amidiplug-flsyn \ --disable-amidiplug-dummy --disable-cdaudio --disable-streambrowser \ --enable-scrobbler --enable-lastfm --disable-neon --disable-mms \ --disable-mtp_up --disable-bluetooth --disable-paranormal --disable-xspf \ --disable-xmltest --disable-cue --disable-projectm --disable-projectm-1.0 \ --disable-filewriter --disable-filewriter_mp3 --disable-filewriter_vorbis \ --disable-filewriter_flac --disable-bs2b cd src/scrobbler/ make cd ../lastfm/ make cp lastfm.so ../scrobbler/scrobbler.so ~/.local/share/audacious/Plugins/. http://http://drop.io/audacious_scrobbler_plugin_64 Cheers. Last edited by santa17; May 27th, 2010 at 10:11 AM.. |
|
|
|
|
|
#10 | |
|
Just Give Me the Beans!
![]() Join Date: Jul 2006
Beans: 48
Ubuntu 11.04 Natty Narwhal
|
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx
Quote:
|
|
|
|
|
| Bookmarks |
| Tags |
| audacious, last.fm, last.fm. audioscrobbler, lucid |
| Thread Tools | |
| Display Modes | |
|
|