Recherche avancée

Médias (91)

Autres articles (64)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang 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, par

    La 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, par

    Mediaspip 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 7bigtrees

    I just have a question about how to use ffmpeg/libavcodec/libstagfright.cpp : I try to avcodec_open2(st->codec, codec) when I have use ffmpeg to set codec->id as CODEC_ID_H264,codec->name as libstagefright_h264,that means I will open
    AVCodec ff_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 gspr

    In particular, can a call to x264_encoder_encode return before every nalu_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 Olumide

    In 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 ?