Recherche avancée

Médias (91)

Autres articles (56)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (10123)

  • understand what is the GOP size (i-frame/p-frame ratio) in a video

    29 avril 2012, par nkint

    i am doing stuffs with a video in action script and i need to seek a video to acertain frame. according to the reference, using NetStream.seek i can seek only to the nearest k-frame :

    Seeks the keyframe (also called an I-frame in the video industry) closest to the specified location. The keyframe is placed at an offset, in seconds, from the beginning of the stream.

    Video streams are usually encoded with two types of frames, keyframes (or I-frames) and P-frames. A keyframe contains an entire image, while a P-frame is an interim frame that provides additional video information between keyframes. A video stream typically has a keyframe every 10-50 frames.

    and so i need to understand how many p-frame and i-frame there are in a video encoded in .f4v format.

    i am on mac and on ubuntu, i don't care about the tool to use (mayebe some ffmpeg/mencoder call should be perfect), any advice ?

  • detecting a timeout in ffmpeg

    19 mai 2015, par Sean

    I am writing some software that uses ffmpeg extensively and it is multi threaded, with multiple class instances.

    If the network connection drops out ffmpeg hangs on reading. I found a method to assign a callback that ffmpeg fires periodically to check if it should abort or not :

    static int interrupt_cb(void *ctx)
    {

    // do something
       return 0;
    }

    static const libffmpeg::AVIOInterruptCB int_cb = { interrupt_cb, NULL };

    ...

    AVFormatContext* formatContext = libffmpeg::avformat_alloc_context( );
    formatContext->interrupt_callback = int_cb;
    if ( libffmpeg::avformat_open_input( &formatContext, fileName, NULL, NULL ) !=0 ) {...}

    This is all fine but nowhere on the web can i find what *ctx contains and how to determine whether the callback should return 1 or 0. I can’t assign a static "abort" flag as the class has many instances. I also can’t debug the code as for some reason visual studio refuses to set a breakpoint on the return 0 ; line, claiming no executable code is associated with the location. Any ideas ?

  • Revision bc1d3cb90b : Fix "_FORTIFY_SOURCE" redefined warning On Ubuntu 12.04, we got the following w

    24 octobre 2012, par Yunqing Wang

    Changed Paths : Modify /build/make/configure.sh Fix "_FORTIFY_SOURCE" redefined warning On Ubuntu 12.04, we got the following warning message : :0:0 : warning : "_FORTIFY_SOURCE" redefined [enabled by default] :0:0 : note : this is the location of the previous definition This was already fixed in VP8 (...)