Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10101)

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