Recherche avancée

Médias (91)

Autres articles (108)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (18956)

  • configure : bump year

    31 décembre 2021, par Gyan Doshi
    configure : bump year
    
    • [DH] configure
  • configure : update copyright year

    31 décembre 2022, par Lynne
    configure : update copyright year
    
    • [DH] configure
  • How to set metadata year for a mp3 file and fetch it back in android ?

    6 mai 2019, par Aashit Shah

    I have been changing the metadata of input mp3 file and storing it in output all the metadata is successfully changing but the year metadata is getting as null.

    Below is my code.

    This is how I fetch the metadata in android :

        MediaMetadataRetriever mmr = new MediaMetadataRetriever();
                 mmr.setDataSource(input);
                 String Album = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM);
                 String Artist = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST);
                 String Title = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE);
                 String Composer = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_COMPOSER);
                 String Genre = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_GENRE);
                 String Year = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_YEAR);
                 Log.e("date","date"+mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE));