
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 (64)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (11345)
-
how to use ffmpeg/libavcodec/libstagefright
22 septembre 2012, par 7bigtreesI just have a question about how to use
ffmpeg/libavcodec/libstagfright.cpp
: I try toavcodec_open2(st->codec, codec)
when I have use ffmpeg to setcodec->id
asCODEC_ID_H264,codec->name
aslibstagefright_h264
,that means I will open
AVCodecff_libstagefright_h264_decoder
.but when
Stagefright_init->OMXCodec::Create->configureCodec-> initOutputFormat(meta)
, the process just Quit ! It is a bazinga !I knew that meta is Metadata, its data comes from
codec->extradata
, and in here, it means sps and pps, am I right ?How can I use
libstagefright
sucessfully in ffmpeg ? Can somebody give me an example ? -
What, if any, guarantees are there for when `nalu_process` will be called ?
1er août 2012, par gsprIn particular, can a call to
x264_encoder_encode
return before everynalu_process
callback associated to it has returned ? Someone in #x264 suggested it's settings-dependent ; I'm talking here about the "zerolatency" preset.If the answer to the above question is yes, then how common is it, empirically ?
-
Concatenating 30fps video with audio using ffmpeg
29 juillet 2012, par OlumideIn essence, my question is about how to specify the framerates of an input video file and the resulting, output video file when concatenating a video and an audio file.
I am trying to concatenate a 30fps video with a 44k audio file but the video and audio parts of the result/output are out of synch. (This does not happen, or less obvious, when the framerate of the video is 24fps, suggests to me that ffmpeg has a default framerate.) I've tried specifying the framerate of the output video as well, like so
ffmpeg -i inFile.avi -i audio.wav -b:v 2500k -r 30 outFile.mpg
but that doesn't seem to help.
What am I doing wrong ?