
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (59)
-
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 (...) -
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. -
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 (...)
Sur d’autres sites (6159)
-
avcodec/alsdec : Fix decoding error with mono audio files
7 mai 2021, par Michael Niedermayeravcodec/alsdec : Fix decoding error with mono audio files
highest_decoded_channel is modified to serve as meant.
Reported-by : Noboru Harada <noboru@ieee.org>
Regression since : a11aa5f3ed7ee4d2385a7b725d43f6070d790b4c
Fixes : Sin48k16bit1ch.mp4
Reviewed-by : Thilo Borgmann <thilo.borgmann@mail.de>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Windows : Ensure FreeLibrary() calls match LoadLibrary() calls
9 août 2015, par Erik de Castro Lopo -
libFLAC : More metadata_iterators fixes
22 mai 2016, par Erik de Castro LopolibFLAC : More metadata_iterators fixes
The previous fixes for metadata_iterators didn’t completely fix the problem.
The behavior of chain_prepare_for_write_() must always be the same as the
behavior of FLAC__metadata_chain_check_if_tempfile_needed(). Before this
fix, one check was missing in FLAC__metadata_chain_check_if_tempfile_needed(),
and also chain_prepare_for_write_() checked the sizes of the metadata blocks
*after* making the changes to the chain, while
FLAC__metadata_chain_check_if_tempfile_needed() does it *before* the changes.This patch changes FLAC__metadata_chain_check_if_tempfile_needed() so that it
keeps some info (lbs_state, lbs_size) about estimated changes and then uses
it to check the block sizes.It also simplifies FLAC__metadata_chain_check_if_tempfile_needed() a little.
Patch-from : lvqcl <lvqcl.mail@gmail.com>