
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (55)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (5331)
-
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.