Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Main Support Categories > Multimedia & Video
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Multimedia & Video
Have multimedia question? ATI, Nvidia, Sound cards. Just ask here.

 
Thread Tools Display Modes
Old April 30th, 2010   #1
togdon
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
It's definitely scrobbling, beyond that I haven't bothered figuring out what's broken or how one would play the last.fm radio (I never use it, so I don't care). I briefly looked into making a package but it's too much of a hassle, I'm assuming either someone else will or people will just move on to another player.

Hope this helps and that someone else will slog through the mess of making it into a package.
togdon is offline   Reply With Quote
Old April 30th, 2010   #2
iuz
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.
iuz is offline   Reply With Quote
Old May 4th, 2010   #3
trpnblies7
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?
trpnblies7 is offline   Reply With Quote
Old May 7th, 2010   #4
fly5
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:
Originally Posted by trpnblies7 View Post
Would someone be able to just post the plugin for download? Or does it actually require building on my specific machine?
i have no knowledge of that, but if you want you can try if my plugins work.
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/
this way there are no images included in settings, but i don't mind that. all i wanted was scrobbling.
fly5 is offline   Reply With Quote
Old May 8th, 2010   #5
trpnblies7
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!
trpnblies7 is offline   Reply With Quote
Old May 12th, 2010   #6
hamstah
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
hamstah is offline   Reply With Quote
Old May 13th, 2010   #7
breta
First Cup of Ubuntu
 
Join Date: May 2010
Beans: 2
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx

Quote:
Originally Posted by fly5 View Post
i have no knowledge of that, but if you want you can try if my plugins work. ...
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.
breta is offline   Reply With Quote
Old May 19th, 2010   #8
breta
First Cup of Ubuntu
 
Join Date: May 2010
Beans: 2
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx

Quote:
Originally Posted by breta View Post
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.
Thanks fly5, I didn't understand from your post, that you present on your page compiled sources from the top post, I thought that you made your own plugins...
breta is offline   Reply With Quote
Old May 27th, 2010   #9
santa17
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/.
Actuall plugins can be downloaded here:
http://http://drop.io/audacious_scrobbler_plugin_64

Cheers.

Last edited by santa17; May 27th, 2010 at 10:11 AM..
santa17 is offline   Reply With Quote
Old June 11th, 2010   #10
fululian
Just Give Me the Beans!
 
fululian's Avatar
 
Join Date: Jul 2006
Beans: 48
Ubuntu 11.04 Natty Narwhal
Re: [HOWTO] Install Last.FM / Scrobbler plugin in Audacious2 on Lucid Lynx

Quote:
Originally Posted by fly5 View Post
i have no knowledge of that, but if you want you can try if my plugins work.
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/
this way there are no images included in settings, but i don't mind that. all i wanted was scrobbling.
Thanks a bunch dude.
fululian is offline   Reply With Quote

Bookmarks

Tags
audacious, last.fm, last.fm. audioscrobbler, lucid

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 03:05 AM.


vBulletin ©2000 - 2012, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry