Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6797)

  • How to prevent overwriting fifo while playing local file with ffmpeg ?

    21 juillet 2013, par frankish

    I use av_read_frame() to read and push frames to fifo. In another thread, I read from this fifo. So, reading and writing does not interfere that much.

    However, I found out that when playing from a local file, audio suddenly skips to somewhere else.. I tried to open recorded file with VLC player and it worked. So the file(recording) is not broken.

    I tried (just to see if it works) the following and it works but it has other problems.

    ...
    if(localFile){
       while(av_fifo_size(fifoPlayback)>2000000){
           pthread_mutex_unlock(&fifoPlaybackMutex);
           usleep(1000000);
           pthread_mutex_lock(&fifoPlaybackMutex);
           // Waiting before writing to fifo, it's not empty enough");
       }
    }

    av_fifo_generic_write(fifoPlayback,...)

    Since the above block at least does not skip, I think my problem is really overwriting on the fifo. But how should I correctly manage this situation ?

  • configure : Use the right local variable in the MSVC and ICL probes

    5 juin 2014, par Martin Storsjö
    configure : Use the right local variable in the MSVC and ICL probes
    

    $cc is the compiler requested as main target compiler, while $_cc
    is the actual tool tested in the probe function right now (which
    can also be e.g. the host compiler).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • Revision bd9e5eceb8 : Code cleanup. Add local variable in several places to reference the MB mode inf

    10 août 2012, par Paul Wilkins

    Changed Paths : Modify /vp8/encoder/encodeframe.c Modify /vp8/encoder/encodeintra.c Modify /vp8/encoder/encodemb.c Modify /vp8/encoder/rdopt.c Code cleanup. Add local variable in several places to reference the MB mode info structure. Currently this is usually accessed in the code as (...)