
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (54)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (5052)
-
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)); -
fftools/cmdutils : put stream specifier handling back into cmdutils
14 décembre 2023, par Anton Khirnovfftools/cmdutils : put stream specifier handling back into cmdutils
Stream specifiers were originally designed exclusively for CLI use and
were not intended to be public API. Handling them in avformat places
major restrictions on how they are used. E.g. if ffmpeg CLI wishes to
override some stream parameters, it has to change the demuxer fields
(since avformat_match_stream_specifier() does not have access to
anything else). However, such fields are supposed to be read-only for
the caller.Furthermore having this code in avformat restricts extending the
specifier syntax. An example of such an extension will be added in
following commits. -
Revert "avformat/file : seek back to initial position for fd protocol"
27 mai 2024, par Rémi Denis-CourmontRevert "avformat/file : seek back to initial position for fd protocol"
The generally expected behaviour is for software to append from the
current position, not to keep resetting. See also how shell works :
# (foo && bar) > file
...would normally concatenate the output of both commands to file.If foo seeks like lavf, bar would instead overwrite the output of
foo (possibly not completely).This reverts commit 5c3d2177e7be7dde69a83b1b394f57976c164c84.