Recherche avancée

Médias (91)

Autres articles (98)

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

  • avformat/hls : clean up duplicate option fields

    17 avril 2018, par Richard Shaffer
    avformat/hls : clean up duplicate option fields
    

    The HLSContext struct contains fields which duplicate the data stored in the
    avio_opts field. This change removes those fields in favor of avio_opts, and
    updates the code accordingly.
    The original patch caused the buffer pointed to by new_cookies in open_url to be
    leaked. The only thing that buffer is used for is to store the value until it
    can be passed to av_dict_set. To fix the leak, v2 of the patch simply calls
    av_dict_set with the AV_DICT_DONT_STRDUP_VAL flag, so that the dictionary takes
    ownership of the memory instead of copying it again.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Richard Shaffer <rshaffer@tunein.com>

    • [DH] libavformat/hls.c
  • tests/fate/libavcodec : add mjpeg encoder depend for fate-libavcodec-huffman

    5 septembre 2024, par Steven Liu
    tests/fate/libavcodec : add mjpeg encoder depend for fate-libavcodec-huffman
    

    fix make fate failed problem, because fate libavcodec-avcodec need mjpeg encoder
    when fate-libavcodec-huffman

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] tests/fate/libavcodec.mak
  • avformat/hlsenc : set default http method to PUT when method is null

    18 février 2017, par Steven Liu
    avformat/hlsenc : set default http method to PUT when method is null
    

    When the http method is not set, the method will use POST for ts,
    PUT for m3u8, it is not unify, now set it unify.
    This ticket id : #5315

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Reviewed-by : Moritz Barsnick <barsnick@gmx.net>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c