
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (37)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6608)
-
configure : update copyright year
1er janvier 2024, par Lynne -
Matomo’s privacy-friendly web analytics software named best of the year 2022
25 janvier 2023, par Erin -
How to set metadata year for a mp3 file and fetch it back in android ?
6 mai 2019, par Aashit ShahI 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));