Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (75)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (13524)

  • avcodec/cbs : Fix potential double-free when adding unit fails

    18 novembre 2019, par Andreas Rheinhardt
    avcodec/cbs : Fix potential double-free when adding unit fails
    

    ff_cbs_insert_unit_data() has two modes of operation : It can insert a
    unit with a newly created reference to an already existing AVBuffer ; or
    it can take a buffer and create an AVBuffer for it. Said buffer will
    then become owned by the unit lateron.

    A potential memleak/double-free exists in the second case, because if
    creating the AVBuffer fails, the function immediately returns, but when
    it fails lateron, the supplied buffer will be freed. The caller has no
    way to distinguish between these two outcomes. The only such caller
    (cbs_jpeg_split_fragment() in cbs_jpeg.c) opted for a potential
    double-free.

    This commit changes this by explicitly stating that a non-refcounted
    buffer will be freed on error. The aforementioned caller has been
    brought in line with this.

    Fixes CID 1452623.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cbs.c
    • [DH] libavcodec/cbs.h
    • [DH] libavcodec/cbs_jpeg.c
  • h264_mp4toannexb : Copy one NAL unit at a time

    14 décembre 2019, par Andreas Rheinhardt
    h264_mp4toannexb : Copy one NAL unit at a time
    

    If processing an input NAL unit triggers the insertion of data from
    extradata in front of said NAL unit, the output packet is grown (i.e.
    reallocated) once to accomodate both the new extradata as well as the
    input NAL unit itself ; this has been changed : In such a situation, the
    packet is now grown twice. While this is bad for performance, it allows
    to simplify the code and ultimately to stop reallocating the packet
    altogether.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_mp4toannexb_bsf.c
  • avcodec/hevc, h2645_parse : Fix HEVC NAL unit names and constants

    18 mars 2020, par Andreas Rheinhardt
    avcodec/hevc, h2645_parse : Fix HEVC NAL unit names and constants
    

    This commit fixes the names and constants of the reserved NAL units
    with nal_unit_type 22 resp. 23. They were "IRAP_IRAP_VLC2x", but are
    actually "RSV_IRAP_VLC2x".

    This also required a change to cbs_h265_syntax_template.c.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cbs_h265_syntax_template.c
    • [DH] libavcodec/h2645_parse.c
    • [DH] libavcodec/hevc.h