IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Macros et VBA Excel Discussion :

Durée d'un fichier MP3


Sujet :

Macros et VBA Excel

  1. #1
    Membre averti
    Inscrit en
    Avril 2004
    Messages
    21
    Détails du profil
    Informations forums :
    Inscription : Avril 2004
    Messages : 21
    Par défaut Durée d'un fichier MP3
    Bonjour a tous,

    Voila je traite via VBA des fichiers divers et varié et notamment des mp3.
    Afin d'affiner mon travail je cherche a recuperer la durée (mm:ss) de chaque fichier.
    Le problème c'est que je n'ai absolument pas idée sur la manière de m'y prendre.

    Si quelqu'un aurai un code, merci d'avance.

  2. #2
    Expert confirmé

    Homme Profil pro
    Inscrit en
    Août 2005
    Messages
    3 317
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2005
    Messages : 3 317
    Par défaut
    bonjour

    un exemple en utilisant la bibliotheque Windows media player:

    http://silkyroad.developpez.com/VBA/WindowsMediaPlayer/


    bonne journée
    michel

  3. #3
    Membre émérite
    Avatar de Montor
    Homme Profil pro
    Autre
    Inscrit en
    Avril 2008
    Messages
    879
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Autre

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Avril 2008
    Messages : 879
    Par défaut
    Bonjour
    Si vous voulez un solution externe via une dll qui extrait toutes les infos sur le fichier titre album astiste je te l'envoyerai ?

  4. #4
    Membre émérite
    Avatar de Montor
    Homme Profil pro
    Autre
    Inscrit en
    Avril 2008
    Messages
    879
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Autre

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Avril 2008
    Messages : 879
    Par défaut
    Bonjour
    J'ai oublié ou j'ai trouvé ces deux unité pour lecture information mp3 "InfoMPEG.pas et TagMp3_unit.pas"en delphi
    J'ai pu les rassembler dans la dll LireInfo.dll qui tu vas la mettre dans le dossier System32 et executer " Lire".
    Code Vba
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    Option Explicit
    Private Type MPdata
    	Titre		As String * 32
    	Artiste		As String * 32
    	Album		As String * 32
    	Annee		As String * 32
    	Commentaire	As String * 32
    	Genre		As String * 32
    	Size		As Long
    	HeaderPos	As Long
    	MPEGAudioversion	As String * 32
    	Layerdescription	As String * 32
    	Protection		As String * 32
    	Bitrate		As String * 32
    	Sampling		As Long
    	Padding		As String * 32
    	ChannelMode	As String * 32
    	Copyright		As String * 32
    	Original		As String * 32
    	Emphasis		As String * 32
    End Type
     
    Private Declare Function LireMpg Lib "LireInfo" (ByVal G As String, X As MPdata) As Long
    Sub Lire()
    Dim s As MPdata, f As Long, Fichier As String
    Fichier = "C:\voice.mp3"
    f = LireMpg(Fichier, s)
    If f = 0 Then
    Cells(1, 1) = s.Album
    Cells(2, 1) = s.Titre
    Cells(3, 1) = s.Artiste
    Cells(4, 1) = s.Annee
    Cells(5, 1) = s.ChannelMode
    Cells(6, 1) = s.Commentaire
    Cells(7, 1) = s.Copyright
    Cells(8, 1) = s.Emphasis
    Cells(9, 1) = s.Genre
    Cells(10, 1) = s.HeaderPos
    Cells(11, 1) = s.Layerdescription
    Cells(12, 1) = s.Original
    Cells(13, 1) = s.Padding
    Cells(14, 1) = s.Protection
    Cells(15, 1) = s.Sampling
    Cells(16, 1) = s.Size
    Cells(17, 1) = s.Bitrate
    Cells(18, 1) = s.MPEGAudioversion
    Else
    MsgBox "Erreur"
    End If
     
    End Sub
    Voici le project LireInfo.dpr vous n'etes pas obliger pour comprendre ce code mais je fais ça pour la securite .
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    library LireInfo; {delphidelphi}
    uses SysUtils,
      TagMp3_unit in 'TagMp3_unit.pas',
      InfoMPEG in 'InfoMPEG.pas';
    const
    genres:array[0..125] of string=(
    'Blues','Classic Rock','Country','Dance','Disco','Funk','Grunge','Hip-Hop','Jazz','Metal',
    'New Age','Oldies','Other','Pop','R&B','Rap','Reggae','Rock','Techno','Industrial','Alternative',
    'Ska','Death Metal','Pranks','Soundtrack','Euro-Techno','Ambient','Trip-Hop','Vocal','Jazz+Funk',
    'Fusion','Trance','Classical','Instrumental','Acid','House','Game','Sound Clip','Gospel','Noise',
    'AlternRock','Bass','Soul','Punk','Space','Meditative','Instrumental Pop','Instrumental Rock',
    'Ethnic','Gothic','Darkwave','Techno-Industrial','Electronic','Pop-Folk','Eurodance','Dream',
    'Southern Rock','Comedy','Cult','Gangsta','Top 40','Christian Rap','Pop/Funk','Jungle',
    'Native American','Cabaret','New Wave','Psychadelic','Rave','Showtunes','Trailer','Lo-Fi',
    'Tribal','Acid Punk','Acid Jazz','Polka','Retro','Musical','Rock & Roll','Hard Rock','Folk',
    'Folk-Rock','National Folk','Swing','Fast Fusion','Bebob','Latin','Revival','Celtic','Bluegrass',
    'Avantgarde','Gothic Rock','Progressive Rock','Psychedelic Rock','Symphonic Rock','Slow Rock',
    'Big Band','Chorus','Easy Listening','Acoustic','Humour','Speech','Chanson','Opera',
    'Chamber Music','Sonata','Symphony','Booty Bass','Primus','Porn Groove','Satire','Slow Jam',
    'Club','Tango','Samba','Folklore','Ballad','Power Ballad','Rhythmic Soul','Freestyle','Duet',
    'Punk Rock','Drum Solo','A capella','Euro-House','Dance Hall');
    type
    chars=array[0..31] of Ansichar;
    function setdata(inp1:string):chars;
    var
    tmp:chars;bo:integer;
    begin tmp:='';
    if (inp1='')then tmp:='Inconnu'else
    for bo:=1 to sizeof(chars) do
    tmp[bo-1]:= inp1[bo];
    result:=tmp;
    end;
    function setbool(inp:boolean):chars;
    begin
    if (inp)then result:='Oui'else
                 result:='Non';
    end;
    function setgenre(gen:integer):chars;
    var
    h:byte;
    begin
    h:= gen and 127;
    result:=setdata(genres[h]);
    end;
    type
       MPdata = record
    	Titre		: chars;
    	Artiste		: chars;
    	Album		: chars;
    	Annee		: chars;
    	Commentaire	: chars;
    	Genre		: chars;
    	Size		: Integer;
    	HeaderPos	: Integer;
    	MPEGAudioversion	: chars;
    	Layerdescription	: chars;
    	Protection		: chars;
    	Bitrate		: chars;
    	Sampling		: integer;
    	Padding		: chars;
    	ChannelMode	: chars;
    	Copyright		: chars;
    	Original		: chars;
    	Emphasis		: chars;
    end;
     
    function LireMpg(Filename:Pchar;var sData:MPdata):integer;stdcall ;
     var
     a:TagMP3;
     b:InfosMPEG;
     c:MPdata;
     F:Integer;
     sC:integer;
     Fichier:string;
    begin
     Fichier:=Filename;
    sC:=-1;
    {$I-}
      F :=FileOpen(Fichier,fmOpenRead );
      if (F>0)and (UpperCase(ExtractFileExt(Fichier)) = '.MP3') then  begin
      Fileclose(F);
      a:=Lire_Tag(Fichier);
      b:=Lire_Infos(Fichier);
      with c do   begin
      Titre:=setdata(a.Titre);
      Album:=setdata(a.Album);
      Artiste:=setdata(a.Artiste);
      Commentaire:=setdata(a.Commentaire);
      Annee:=setdata(a.Annee);
      Genre:=setgenre(a.Genre);
      Size:=b.Size;
      HeaderPos:=b.HeaderPos;
      MPEGAudioversion:=setdata(b.MPEGAudioversion);
      Layerdescription:=setdata(b.Layerdescription);
      Protection:=setbool(b.Protection);
      Bitrate:=setdata(b.Bitrate);
      Sampling:=b.Sampling;
      Padding:=setbool(b.Padding);
      ChannelMode:=setdata(b.ChannelMode);
      Copyright:=setbool(b.Copyright);
      Original:=setbool(b.Original);
      Emphasis:=setdata(b.Emphasis);
      end;
      sData:=c;
      sC:=0;
      end;
      {$I+}
      result:=sC;
      end;
      exports
     LireMpg ;
     begin
    end.
     ///////////////
    unit TagMp3_unit;
     
    { TagMP3  v 1.0 par DelphiCool
            09/03/2002
          www.ProgZed.com
    }
     
     
    interface
     uses
      SysUtils, Classes ;
     
      Type
       TagMP3 = record
         Titre : String;
         Artiste : String[30];
         Album : String[30];
         Annee : String[4];
         Commentaire : String[30];
         Genre : Byte;
      end;
     
     
      Function Lire_Tag(Fichier :string): TagMP3;
      Procedure Ecrire_Tag(Fichier :string; VotreTag : TagMP3);
     
    implementation
     
     
    {-=-=-=-=-=-= LECTURE DU TAG =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-}
    Function Lire_Tag(Fichier :string): TagMP3;
     var Fs : TFileStream;
         Tag : Array[1..128] of Char;
         i :integer;
         s :string;
         T : TagMP3;
      begin
        Fs := TFileStream.Create(Fichier,fmOpenRead);
         i := Fs.Size -128;
         Fs.Seek( i,soFromBeginning);
         Fs.Read(Tag,128);
        Fs.Free;
     
       s := Copy(Tag,1,3);
         if s <> 'TAG' then ErangeError.Create('Il n''y as pas de Tag actuellement');
     
     
    { titre }       T.Titre := Copy(Tag,4,33);
     
    { Artiste }     T.Artiste := Copy(Tag,34,63);
     
    { Album }       T.Album := Copy(Tag,64,93);
     
    { Année }       T.Annee := Copy(Tag,94,97);
     
    { Commentaire } T.Commentaire := Copy(Tag,98,127);
     
    { Genre }       T.Genre := Ord(Tag[128]);
     
         Result := T;
      end;
     
    {-=-=-=-=-=-= LECTURE DU TAG =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-}
    Procedure Ecrire_Tag(Fichier :string; VotreTag : TagMP3);
    const TypeTag : array[1..3] of Byte = ($54,$41,$47);
     var Fs : TFileStream;
         i, j :integer;
         b : byte;
      begin
       j := 1;
        Fs := TFileStream.Create(Fichier,fmOpenWrite);
    { on se positionne au bon endroit }
         i := Fs.Size -128;
         Fs.Seek( i,soFromBeginning);
    { on ecrit TAG }     
         Fs.Write(TypeTag,3);
     
    { TiTre }
       For i := 1 to Length(VotreTag.Titre) do
         begin
          b := Ord(VotreTag.Titre[i]);
          Fs.Write(b,1);
          j := i;
         end;
          b := 0;    for i := j to 29 do  Fs.Write(b,1);
     
    { Artiste }
       For i := 1 to Length(VotreTag.Artiste) do
         begin
          b := Ord(VotreTag.Artiste[i]);
          Fs.Write(b,1);
          j := i;
         end;
          b := 0;    for i := j to 29 do  Fs.Write(b,1);
     
    { Album }
       For i := 1 to Length(VotreTag.Album) do
         begin
          b := Ord(VotreTag.Album[i]);
          Fs.Write(b,1);
          j := i;
         end;
          b := 0;    for i := j to 29 do  Fs.Write(b,1);
     
     
    { Année }
       For i := 1 to Length(VotreTag.Annee) do
         begin
          b := Ord(VotreTag.Annee[i]);
          Fs.Write(b,1);
          j := i;
         end;
          b := 0;    for i := j to 3 do  Fs.Write(b,1);
     
     
    { Commentaire }
       For i := 1 to Length(VotreTag.Commentaire) do
         begin
          b := Ord(VotreTag.Commentaire[i]);
          Fs.Write(b,1);
          j := i;
         end;
          b := 0;    for i := j to 29 do  Fs.Write(b,1);
     
    { Genre }
          b := VotreTag.Genre;
          Fs.Write(b,1);
     
       Fs.Free;
      end;
     
     
     
      {-=-=-=-=-=-=  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-}
     
     
    end.
    /////////////////
    {
       Info MPEG
       par Fred MONTIN
       http://f.montin.free.fr
       30 Janvier 2006
    }
     
    unit InfoMPEG;
     
    interface
     uses
      SysUtils, Classes, Dialogs ;
     
      Type
       InfosMPEG = record
             Size             : Integer;
             HeaderPos        : Integer;
    	 MPEGAudioversion : string;
    	 Layerdescription : string;
    	 Protection       : boolean;
    	 Bitrate          : string;
    	 Sampling         : integer;
    	 Padding          : boolean;
    	 ChannelMode      : string;
    	 Copyright        : boolean;
    	 Original         : boolean;
    	 Emphasis         : string;
      end;
     
      Function Lire_Infos(Fichier :string): InfosMPEG;
     
    implementation
     
     
    {-=-=-=-=-=-= LECTURE DES INFOS =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-}
    Function Lire_Infos(Fichier :string): InfosMPEG;
    var
        Fs     : TFileStream;
        Header : Array[1..4] of Char;
        b      : byte;
        Info   : InfosMPEG;
    const
        BitrateV1L1 : Array[0..15] of String = ('free','32','64','96','128','160','192','224','256','288','320','352','384','416','448','bad');
        BitrateV1L2 : Array[0..15] of String = ('free','32','48','56','64','80','96','112','128','160','192','224','256','320','384','bad');
        BitrateV1L3 : Array[0..15] of String = ('free','32','40','48','56','64','80','96','112','128','160','192','224','256','320','bad');
        BitrateV2L1 : Array[0..15] of String = ('free','32','64','96','128','160','192','224','256','288','320','352','384','416','448','bad');
        BitrateV2L2 : Array[0..15] of String = ('free','32','48','56','64','80','96','112','128','160','192','224','256','320','384','bad');
        BitrateV2L3 : Array[0..15] of String = ('free','8 (8)','16 (16)','24 (24)','32 (32)','64 (40)','80 (48)','56 (56)','64 (64)','128 (80)','160 (96)','112 (112)','128 (128)','256 (144)','320 (160)','bad');
    begin
                    {  Header                             }
                    { AAAAAAAA AAABBCCD EEEEFFGH IIJJKLMM }
     
                { Extraction du Header }
        Fs := TFileStream.Create(Fichier, fmOpenRead or fmShareDenyNone);
          Info.Size := Fs.Size;
          Info.HeaderPos := 0;
          While Info.HeaderPos = 0 do
          begin
            While b <> 255 do                // b=11111111
              Fs.read(b,1);
            Fs.read(b,1);
            if (b and 224) = 224 then        // b=111xxxxx
              Info.HeaderPos := Fs.Position - 2;
            if Fs.Position > Fs.Size - 128 then
            begin
              Result := Info;
              Exit;
            end;
          end;
          Fs.Seek(Info.HeaderPos, soFromBeginning);
          Fs.Read(Header, 4);
        Fs.Free;
     
                { B- MPEG Audio version }
        b := (Ord(Header[2]) and 24);
        Case b of
            24: Info.MPEGAudioversion := 'MPEG 1.0';
            10: Info.MPEGAudioversion := 'MPEG 2.0';
            08: Info.MPEGAudioversion := 'Reserved';
            00: Info.MPEGAudioversion := 'MPEG 2.5';
        end;
     
                { C- Layer description }
        b := (Ord(Header[2]) and 6);
        Case b of
            6: Info.Layerdescription := 'Layer 1';
            4: Info.Layerdescription := 'Layer 2';
            2: Info.Layerdescription := 'Layer 3';
            0: Info.Layerdescription := 'Reserved';
        end;
     
                { D- Protection }
        b := (Ord(Header[2]) and 1);
        Info.Protection := (b = 0);
     
                { E- Bitrate }
        b := (Ord(Header[3]) and 240);
        if Trunc(b / 16) > 15 then
            b := 15 * 16;
        if Info.MPEGAudioversion = 'MPEG 1.0' then
        begin
            if Info.Layerdescription = 'Layer 1' then
              Info.Bitrate := BitrateV1L1[Trunc(b / 16)]
            else if Info.Layerdescription = 'Layer 2' then
              Info.Bitrate := BitrateV1L2[Trunc(b / 16)]
            else if Info.Layerdescription = 'Layer 3' then
              Info.Bitrate := BitrateV1L3[Trunc(b / 16)];
        end else begin
            if Info.Layerdescription = 'Layer 1' then
              Info.Bitrate := BitrateV2L1[Trunc(b / 16)]
            else if Info.Layerdescription = 'Layer 2' then
              Info.Bitrate := BitrateV2L2[Trunc(b / 16)]
            else if Info.Layerdescription = 'Layer 3' then
              Info.Bitrate := BitrateV2L3[Trunc(b / 16)];
        end;
     
                { F- Sampling rate frequency }
        b := (Ord(Header[3]) and 12);
        if Info.MPEGAudioversion = 'MPEG 1.0' then
        begin
            case b of
                8: Info.Sampling := 32000;
                4: Info.Sampling := 48000;
                0: Info.Sampling := 44100;
            end;
        end else if Info.MPEGAudioversion = 'MPEG 2.0' then
        begin
            case b of
                8: Info.Sampling := 16000;
                4: Info.Sampling := 24000;
                0: Info.Sampling := 22050;
            end;
        end else if Info.MPEGAudioversion = 'MPEG 2.5' then
        begin
            case b of
                8: Info.Sampling := 8000;
                4: Info.Sampling := 12000;
                0: Info.Sampling := 11025;
            end;
        end;
     
                { G- Padding }
        b := (Ord(Header[3]) and 2);
        Info.Padding := (b = 0);
     
                { I- Channel Mode }
        b := (Ord(Header[4]) and 192);
        case b of
            192: Info.ChannelMode := 'Single channel (Mono)';
            128: Info.ChannelMode := 'Dual channel (Stereo)';
            064: Info.ChannelMode := 'Joint stereo (Stereo)';
            000: Info.ChannelMode := 'Stereo';
        end;
     
                { K- Copyright }
        b := (Ord(Header[4]) and 8);
        Info.Copyright := (b = 8);
     
                { L- Original }
        b := (Ord(Header[4]) and 4);
        Info.Original := (b = 4);
     
                { M- Emphasis }
        b := (Ord(Header[4]) and 3);
        case b of
            3: Info.Emphasis := 'CCIT J.17';
            2: Info.Emphasis := 'Reserved';
            1: Info.Emphasis := '50/15 ms';
            0: Info.Emphasis := 'None';
        end;
     
        Result := Info;
    end;
     
    end.

Discussions similaires

  1. Calcul de la durée d'un fichier MP3
    Par pearlvsalice dans le forum Langage
    Réponses: 4
    Dernier message: 12/11/2009, 09h09
  2. Connaître la durée exacte d'un fichier MP3
    Par rambc dans le forum Programmation multimédia/Jeux
    Réponses: 4
    Dernier message: 22/03/2009, 13h19
  3. ID3 ==> Durée d'un fichier MP3
    Par nabmoah dans le forum Langage
    Réponses: 1
    Dernier message: 22/10/2008, 20h38
  4. Recupere les tag d'entete d'un fichier mp3
    Par kirbs dans le forum C++Builder
    Réponses: 7
    Dernier message: 05/10/2006, 17h40
  5. Réponses: 3
    Dernier message: 25/07/2002, 10h42

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo