Fire.fm 1.1.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Fire.fm 1.1.1 (Default branch)
# 1  
Old 08-26-2008
Fire.fm 1.1.1 (Default branch)

ImageFire.fm is a Firefox extension to access the extensive music library on Last.fm. It lets you listen to music related to your favorite artist and discover new artists and music in the process. It can also be used to listen to your friend's favorite music and to find Last.fm users with musical taste similar to your own. Your favorite stations can be accessed quickly by typing a few letters into the location bar. The auto-play feature begins playing the last station you played when you closed Firefox.License: BSD License (revised)Changes:
This new version adds the Portuguese (Brazil)translation. The context menu option that loadsstations from selected text was fixed. A conflictwith the Stop Autoplay extension was fixed. Twofixes were made to better recognize logged instatus and Scrobble status. The stop button cannow be used to stop station loading.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
AnyData::Format::Mp3(3pm)				User Contributed Perl Documentation				 AnyData::Format::Mp3(3pm)

NAME
AnyData::Format::Mp3 - tied hash and DBI access to Mp3 files SYNOPSIS
use AnyData; my $playlist = adTie( 'Passwd', ['c:/My Music/'] ); while (my $song = each %$playlist){ print $song->{artist} if $song->{genre} eq 'Reggae' } OR use DBI my $dbh = DBI->connect('dbi:AnyData:'); $dbh->func('playlist','Mp3,['c:/My Music'],'ad_catalog'); my $playlist = $dbh->selectall_arrayref( qq{ SELECT artist, title FROM playlist WHERE genre = 'Reggae' }); # ... other DBI/SQL operations DESCRIPTION
This module provides a tied hash interface and a DBI/SQL interface to MP files. It creates an in-memory database or hash from the Mp3 files themselves without actually creating a separate database file. This means that the database is automatically updated just by moving files in or out of the directories. Many mp3 (mpeg three) music files contain a header describing the song name, artist, and other information about the music. Simply choose 'Mp3' as the format and give a reference to an array of directories containing mp3 files. Each file in those directories will become a record containing the fields: song artist album year genre filename filesize This module is a submodule of the AnyData.pm and DBD::AnyData.pm modules. Refer to their documentation for further details. AUTHOR &; COPYRIGHT copyright 2000, Jeff Zucker <jeff@vpservices.com> all rights reserved perl v5.10.1 2004-08-17 AnyData::Format::Mp3(3pm)