Auteur Sujet: LAst fm  (Lu 3735 fois)

sarah porte

  • Invité
LAst fm « le: avril 27, 2009, 15:53:09 pm »
Last.fm est à la fois une webradio et un site internet proposant un système de collection de statistiques et de recommandation de musique. En mars 2008, le site se targuait d'avoir plus de 21 millions d'utilisateurs actifs dans plus de 200 pays

bon
je suis parti du principe que plus des artistes ( d'antisocial ) étaient écoutés, plus ils seraient recommandés

petit regard du coté de perl
http://search.cpan.org/~roam/Audio-Scrobbler-0.01/lib/Audio/Scrobbler.pm

et j'ai donc modifié le code source du logiciel pour créer un auditeur ( robot ) qui écoute que du antisocial

#!/usr/bin/perl -w

use 5.006;
use strict;

=head1 NAME

scrobbler-helper - submit a track to AudioScrobbler

=head1 SYNOPSIS

 scrobbler-helper [-nv] [-e encoding] [-f configfile] -P progname
   -V progver title artist album year comment genre length

=head1 DESCRIPTION

The B<scrobbler-helper> utility uses the C<Audio::Scrobbler> module to
submit a single track's information to Last.fm's AudioScrobbler -
http://www.audioscrobbler.com/.  It requires the program (plug-in) name
and version to be specified on the command line, and also requires all
seven track attributes, although some of them may be omitted by supplying
empty strings.

The following command-line options are recognized:

=over 4

=item -e encoding

Specify the character encoding of the track info, if it is neither UTF-8
nor the one specified via B<default_encoding> in the configuration file.

=item -f configfile

Specify a different configuration file, not ~/.scrobbler-helper.conf.

=item -n

Do not actually perform the handshake and submission
(sets the C<Audio::Scrobbler> B<"fake"> option).

=item -P progname

Specify the name of the AudioScrobbler plug-in submitting the data.
This option is B<mandatory>!

=item -v
Verbose operation - display diagnostic messages to the standard output
(sets the C<Audio::Scrobbler> B<"verbose"> option).

=item -V progver

Specify the version of the AudioScrobbler plug-in submitting the data.
This option is B<mandatory>!

=back

Besides the command line, the B<scrobbler-helper> utility also retrieves
information from a per-user configuration file, usually
~/.scrobbler-helper.conf; it is a INI-style file, which must contain a
secion named B<"global">.  The following variables are recognized, with
B<username> and B<password> being mandatory:

=over 4

=item * default_encoding

The encoding to assume for the track info, if none is supplied with
the B<-e> command-line option.  If neither B<-e> is given on the command
line nor B<default_encoding> specified in the configuration file, the
B<scrobbler-helper> utility assumes UTF-8.

=item * fix_track_name

A boolean flag specifying whether to do some trivial fixes on the song
name before submitting it.  Currently, this only removes a "DD. "
sequence at the start of the name, where 'D' is a digit.

The values C<on>, C<true>, C<yes>, and C<1> are considered to be true.

=item * password

The password for the AudioScrobbler account.

=item * username

The username for the AudioScrobbler account.

=back

  [global]
  username=antisocial-net
  password=xxxxxxxxxx
  # Optional (the default is UTF-8)
  default_encoding=windows-1251
  # Optional (the default is "no")
  fix_track_name=yes

=cut

use Config::IniFiles;
use Encode;
use Getopt::Std;

use Audio::Scrobbler;

sub is_true($);

my %infovars = (
        'cmdopts'       => [ qw/P V/ ],
        'cmdline'       => [ qw/title artist album year comment genre length/ ],
        'global'        => [ qw/username password/ ],
        'global_nc'     => [ qw/default_encoding fix_track_name/ ],
);
my $verbose = 0;

MAIN:
{
//le debut de la modification

        my $i = 0; # les tableaux commencent à 0
        my @tab_artiste = ();
        my @tab_title = ();
        my @tab_album = ();
        my @tab_year = ();
        my @tab_duration = ();

        my @LASTFM = 0;

        open(LISTE, "listes") or die "ouverture de fichiers impossible:$!\n";  // on prend un artiste dans une liste
        while (my $ligne = <LISTE>) { # attention, ici my est local aux {}
                chomp $ligne; # on chomp de suite !
                my ($artiste, $title,$album,$year,$duration)= split(/:/,$ligne);
                $tab_artiste[$i]=$artiste;
                $tab_album[$i]=$album;
                $tab_title[$i]=$title; # plus élégant: push(@tab_title, $title);
                $tab_year[$i]=$year;
                $tab_duration[$i]=$duration;
                $i++;
                }
        my $aleatoire= int (rand $i);
        sleep $aleatoire;  // on dort pour tromper l ennemi
        #print "le nombre aleatoire",$aleatoire,"\n";
        #######
        my %info;
        my (%opts, %cfg) = ();
        my ($configfname) = "scrobbler-helper.conf";
        my ($scrob);
        getopts('nve:f:P:V:', \%opts) or die "Parsing options: $!\n";
        $configfname = $opts{'f'} if $opts{'f'};
        $verbose = 1 if $opts{'v'};
        $info{'verbose'} = $verbose;
        $info{'fake'} = 1 if $opts{'n'};

        @info{qw/progname progver encoding/} = @opts{@{$infovars{'cmdopts'}}};
        if (!($info{'progname'} && $info{'progver'})) {
                die "Must specify program name (-P) and version (-V)!\n";
        }

        if (@ARGV != @{$infovars{'cmdline'}}) {
                die 'Need '.@{$infovars{'cmdline'}}.' args: '.
                    join(', ', @{$infovars{'cmdline'}}).".\n";
            }
#print "le title est ",$tab_title[$aleatoire], "l'album est:",$tab_album[$aleatoire],"l artiste:",$tab_artiste[$aleatoire],$tab_year[$aleat
oire],"---",$tab_duration[$aleatoire],"\n";
        @LASTFM=($tab_title[$aleatoire],$tab_artiste[$aleatoire],$tab_album[$aleatoire],$tab_year[$aleatoire],"www.antisocial.be","Experime
ntal",$tab_duration[$aleatoire]);
        #@info{@{$infovars{'cmdline'}}} = @ARGV;
        @info{@{$infovars{'cmdline'}}} = @LASTFM;

        map { s/^\s+//; s/\s+$//; } @info{@{$infovars{'cmdline'}}};

        if (!tie %cfg, 'Config::IniFiles',
            (-file => $configfname, -allowcontinue => 1)) {
                my $err = join "\n", "Could not read $configfname: $!",
                    @Config::IniFiles::errors;
                die "$err\n";
        }

        @info{@{$infovars{'global'}}, @{$infovars{'global_nc'}}} =
            @{$cfg{'global'}}{@{$infovars{'global'}},
            @{$infovars{'global_nc'}}};
        for (@{$infovars{'global'}}) {
                die 'Missing variables in the config file, need at least '.
                    join(', ', @{$infovars{'global'}}).".\n"
                    unless defined($info{$_});
        }

        # Recode the track info into UTF-8
        if (defined($info{'default_encoding'}) &&
            (!defined($info{'encoding'}) || $info{'encoding'} eq '')) {
                $info{'encoding'} = $info{'default_encoding'};
        }
       if (defined($info{'encoding'}) && $info{'encoding'} !~ /^utf-?8$/i) {
                print "RDBG recoding track info from $info{encoding} to UTF8\n"
                    if $verbose;
                foreach (@{$infovars{'cmdline'}}) {
                        $info{$_} = decode($info{'encoding'}, $info{$_});
                }
        }

        # Fix up the track name if requested
        if (defined($info{'fix_track_name'}) &&
            is_true($info{'fix_track_name'})) {
                $info{'title'} =~ s/^\d\d?\. //;
                print "RDBG fixed up the track name to $info{title}\n"
                    if $verbose;
        }
print "valeurs cmdline:",%info, "\n";
        # Rock'n'roll!
        $scrob = new Audio::Scrobbler('cfg' => \%info) or
           die "Could not create an Audio::Scrobbler object\n";
        $scrob->handshake() or die "Scrobbler: ".$scrob->err()."\n";
        print "RDBG handshake successful, it seems\n" if $verbose;
        $scrob->submit(\%info) or
            die "Scrobbler submit: ".$scrob->err()."\n";
        print "RDBG submision successful, it seems\n" if $verbose;
}

sub is_true($)
{
        my $s = lc $_[0];

        return ($s eq '1' || $s eq 'on' || $s =~ /^[ty]/);
}

=head1 TODO

=over 4

=item *

Command-line options, so people don't have to submit everything...

=item *

Storing and caching of unsuccessful submissions for later retrying.

=back

=head1 SEE ALSO
B<Audio::Scrobbler>

=over 4

=item * http://www.last.fm/

=item * http://www.audioscrobbler.com/

=item * http://www.audioscrobbler.net/

=back

The home site of the C<Audio::Scrobbler> module is
http://devel.ringlet.net/audio/Audio-Scrobbler/

=head1 AUTHOR

Peter Pentchev, E<lt>roam@ringlet.netE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2005, 2006 by Peter Pentchev.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.7 or,
at your option, any later version of Perl 5 you may have available.

$Id: scrobbler-helper 88 2006-01-02 09:16:32Z roam $

=cut


le fichier liste


MoDuLe VxD:le bucgoer au queen:Bugcore is not a crime:2005:188
sensible:human:tasty:2006:160
silence:1:La machine:2006:159
TheGalactix lassad:Corbeil essonne bonjour:Les idees saines de serge dassault:2004:208
Tzii:sex on my tv screen:Sexe, Domination et autres rejouissances:2005:198
Simone & Flu:Depressa:[MA019] Wonderbra...zil:2004:154
UNAS:2ND BOSS:8-BIT RNR:2006:191


Le tout est lancé tous les quart d'heures pendant les heures ouvrables
et le résultat ici
http://www.lastfm.fr/user/antisocial-net

Kiki aux Morilles

  • Yog-Sothoth Mucus
  • *
  • Messages: 2090
LAst fm « Réponse #1 le: avril 27, 2009, 17:07:37 pm »
rajoute mech4kuch4 a la playlist ;)

bien goret le code smiley14

sarah porte

  • Invité
LAst fm « Réponse #2 le: avril 27, 2009, 17:27:42 pm »
sans problèmes

il faut que ce soit du format
Artist:Titre:Album:année:Durée( en secondes )

Staross

  • CromCruach Spagetooz
  • *
  • Messages: 3468
LAst fm « Réponse #3 le: avril 27, 2009, 18:31:06 pm »
Y'a des trucs pour détecter les bots je crois, mais faut abuser sur le nombre d'écoutes.

sarah porte

  • Invité
LAst fm « Réponse #4 le: avril 28, 2009, 09:58:32 am »
j'ai d'autres programmes qui fonctionnent pour last fm 24h sur 24 avec une seule chanson, un seul artiste et ils n'ont toujours pas été stoppé.

Staross

  • CromCruach Spagetooz
  • *
  • Messages: 3468
LAst fm « Réponse #5 le: avril 28, 2009, 18:23:41 pm »
Vandal ! (jc)

Luca

  • Human Pâté
  • *
  • Messages: 126
LAst fm « Réponse #6 le: mai 27, 2009, 10:38:48 am »
salut, et admettons que je veuille faire ça pour un autre groupe, un autre morceau ou quoi, il faudrait que je modifie quoi dans ce que t'as posté? (j'y connais strictement rien)
merci...

Gilles Haidesovetaj

  • Invité
LAst fm « Réponse #7 le: mai 27, 2009, 11:51:31 am »
faut que tu aies un linux sous la main?

sinon tu peux m'envoyer tes titres sous la forme
Artist:Titre:Album:année:Durée( en secondes )

je le ferai pour toi

Luca

  • Human Pâté
  • *
  • Messages: 126
LAst fm « Réponse #8 le: mai 27, 2009, 11:56:55 am »
edit: en fait c'est bon, merci

sarah porte

  • Invité
LAst fm « Réponse #9 le: juin 02, 2009, 16:29:26 pm »
j'ai décidé d'ajouter une fonction qui permet de générer aleatoirement des titres de chansons BM et disco mélangés. Envoyez vos suggestions.

Alonzo Balmaskait

  • Invité
LAst fm « Réponse #10 le: octobre 23, 2009, 16:53:44 pm »
j'ai redirigé la playlist de Fun Radio en changeant le titre et en mettant Vandales 2.0 comme titre.
 
http://www.lastfm.fr/user/Mutt_Robert

unasrakraganh

  • Nyarlathotep Fongus
  • *
  • Messages: 1624
LAst fm « Réponse #11 le: octobre 24, 2009, 12:54:37 pm »
Comment faire pour dissocier 2 groupes portant le même nom sur last.fm ?
musical as unas/cxaxb/odium decoy/dj morille/bosquet club

Alonzo Balmaskait

  • Invité
LAst fm « Réponse #12 le: octobre 25, 2009, 20:24:36 pm »
c pas possible
d'ou la possibilité de pourir les stats des autres groupes
désolé