Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (68)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • avformat/dashenc : use av_reallocp_array()

    26 avril 2020, par Limin Wang
    avformat/dashenc : use av_reallocp_array()
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/dashenc.c
  • avformat/hlsenc : use av_asprintf()

    26 mars 2020, par Limin Wang
    avformat/hlsenc : use av_asprintf()
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/hlsenc.c
  • avfilter/ccfifo : Properly handle CEA-708 captions through framerate conversion

    5 mai 2023, par Devin Heitmueller
    avfilter/ccfifo : Properly handle CEA-708 captions through framerate conversion
    

    When transcoding video that contains 708 closed captions, the
    caption data is tied to the frames as side data. Simply dropping
    or adding frames to change the framerate will result in loss of
    data, so the caption data needs to be preserved and reformatted.

    For example, without this patch converting 720p59 to 1080i59
    would result in loss of 50% of the caption bytes, resulting in
    garbled 608 captions and 708 probably wouldn't render at all.
    Further, the frames that are there will have an illegal
    cc_count for the target framerate, so some decoders may ignore
    the packets entirely.

    Extract the 608 and 708 tuples and insert them onto queues. Then
    after dropping/adding frames, re-write the tuples back into the
    resulting frames at the appropriate rate given the target
    framerate. This includes both having the correct cc_count as
    well as clocking out the 608 pairs at the appropriate rate.

    Thanks to Lance Wang <lance.lmwang@gmail.com>, Anton
    Khirnov <anton@khirnov.net>, and Michael Niedermayer <michael@niedermayer.cc>
    for providing review/feedback.

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/Makefile
    • [DH] libavfilter/ccfifo.c
    • [DH] libavfilter/ccfifo.h