Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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" (...)

  • 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 (7715)

  • Optimizing x264 based remote desktop by dirty regions

    17 novembre 2016, par useprxf

    I was using x264 to achieve remote desktop, but had some problems on handling P_SKIP detection.

    Dirty regions indicate changed areas. For those 16x16 macroblocks which don’t intersect any dirty region, I would like to encode them as P_SKIP macroblocks.

    I tried to add the following code into x264_macroblock_prob_skip_internal function :

    if (! h->isdirty[h->mb.i_mb_x][h->mb.i_mb_y])       // isdirty is a 2-dim array indicating dirty macroblocks
       return 1;

    but there is almost no speed-up. I think it may be the information preparation for the macroblock analysis that take influence.

    How to speed up x264 by considering dirty regions ?

  • movenc : Set tfhd default sample flags based on actual samples, if possible

    6 mars 2015, par Martin Storsjö
    movenc : Set tfhd default sample flags based on actual samples, if possible
    

    This avoids assuming that e.g. audio samples are marked as
    sync samples.

    This allows omitting the sample flags from trun, if the default
    flags happen to be right for all the samples.

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

    • [DBH] libavformat/movenc.c
  • Add a compat stdatomic.h implementation based on pthreads

    29 novembre 2016, par Anton Khirnov
    Add a compat stdatomic.h implementation based on pthreads
    

    Adapted from the code by Rémi Denis-Courmont from VLC

    This merges libav commit f9a6a80e065cdb95b233978f1d96ec9bc863daa1.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] compat/atomics/pthread/stdatomic.c
    • [DH] compat/atomics/pthread/stdatomic.h
    • [DH] configure