
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (53)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (8256)
-
FFmpeg Lame output buffer too small, fix in Windows ?
4 juillet 2012, par TylerAll the search results for this seem to return Linux command line solutions.
The bug means that although a video is successfully converted, an error message
"lame : output buffer too small (buffer index : 10398, free bytes : 394)
Audio encoding failed (avcodec_encode_audo2)"is returned to the software that I am using with it. Apparently, downgrading the version of lame to 3.97 will solve this problem. But again, I have only found fixes for this in Linux.
Edit : I get the above error message when I try to convert a given Mpeg file to flv using the following (or similar) command :
"-i " + sourceVideoPath + " -sameq -ar 22050 " + outputVideoPath;
The error message is same whether run from my program or direct from the command line.
I have also tried to download the latest static version of FFmpeg from here but the error message remains.
Could anyone direct me on how to downgrade the lame version in windows, or point me to a download without the bug, or tell me of any other way to solve this ?
-
Revision ac980b71cf : Improve sign consistency. Fix warning on windows : signed/unsigned mismatch on l
23 avril 2013, par JohannChanged Paths :
Modify /vp9/vp9_dx_iface.c
Improve sign consistency.Fix warning on windows : signed/unsigned mismatch on lines 415, 454
Comparison was between size_t data_sz >= int index_sz on 415 and
unsigned int data_sz >= int index_sz on 454. Both might be changed to
size_t but that would be tracing and replacing all comparisons is
outside the scope of this change.In the rest of these two functions ensure unsigned values are used
consistently.Change-Id : I922b399ceca612a92f44b9d1d331c1c6bae9d768
-
Revision 7af58d4338 : Resolve declaration and implementation. Clean Windows build warnings : warning C
23 avril 2013, par JohannChanged Paths :
Modify /vp9/common/vp9_findnearmv.c
Modify /vp9/common/vp9_rtcd_defs.sh
Resolve declaration and implementation.Clean Windows build warnings :
warning C4028 : formal parameterdifferent from declaration This was fixed independently in master and experimental but the fixes
were in opposite directions. One added const to the declaration and the
other removed it from the implementation.Also update the variable names. This doesn't modify the data so call it
ref, matching the functions in the vicinity, rather than dst.Change-Id : I2ffc6b4a874cb98c26487b909d20a5e099b5582c