Recherche avancée

Médias (91)

Autres articles (101)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8243)

  • avformat/hls : Add option to retry failed segments for hls

    20 octobre 2022, par gnattu
    avformat/hls : Add option to retry failed segments for hls
    

    Current HLS implementation simply skip a failed segment to catch up
    the stream, but this is not optimal for some use cases like livestream
    recording.
    Add an option to retry a failed segment to ensure the output file is
    a complete stream.

    Signed-off-by : gnattu <gnattuoc@me.com>
    Reviewed-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] doc/demuxers.texi
    • [DH] libavformat/hls.c
  • avfilter/vf_v360 : adjustment out_pad and in_pad maximum value to 1/10

    21 avril 2020, par Steven Liu
    avfilter/vf_v360 : adjustment out_pad and in_pad maximum value to 1/10
    

    Because not every user know about in_pad and out_pad reasonable value range
    so maybe try to set 1.0, but setting 1.0 is so hugh to get an fatal error.

    Suggested-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_v360.c
  • avutil/hwcontext_dxva2 : Don't improperly free IDirect3DSurface9 objects

    16 mai 2017, par Aaron Levinson
    avutil/hwcontext_dxva2 : Don't improperly free IDirect3DSurface9 objects
    

    Add dxva2_pool_release_dummy() and use it in call to
    av_buffer_create() in dxva2_pool_alloc().

    Prior to this change, av_buffer_create() was called with NULL for the
    third argument, which indicates that av_buffer_default_free() should
    be used to free the buffer's data. Eventually, it gets to
    buffer_pool_free() and calls buf->free() on a surface object (which is
    av_buffer_default_free()).

    This can result in a crash when the debug version of the C-runtime is
    used on Windows. While it doesn't appear to result in a crash when
    the release version of the C-runtime is used on Windows, it likely
    results in memory corruption, since av_free() is being called on
    memory that was allocated using
    IDirectXVideoAccelerationService::CreateSurface().

    Signed-off-by : Aaron Levinson <alevinsn@aracnet.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
    Reviewed-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavutil/hwcontext_dxva2.c