Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (58)

  • 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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (10566)

  • avcodec/av1_metadata : don't store the inserted TD OBU in stack

    22 avril 2021, par James Almer
    avcodec/av1_metadata : don't store the inserted TD OBU in stack
    

    Fixes : stack-use-after-return
    Fixes : clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-5931515701755904
    Fixes : clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6105676541722624

    Reviewed-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/av1_metadata_bsf.c
  • avcodec/parser : Don't return pointer to stack buffer

    19 mars 2021, par Andreas Rheinhardt
    avcodec/parser : Don't return pointer to stack buffer
    

    When flushing, the parser receives a dummy buffer with padding
    that lives on the stack of av_parser_parse2(). Certain parsers
    (e.g. Dolby E) only analyze the input, but don't repack it. When
    flushing, such parsers return a pointer to the stack buffer and
    a size of 0. And this is also what av_parser_parse2() returns.

    Fix this by always resetting poutbuf in case poutbuf_size is zero.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/parser.c
  • avcodec/decode : Avoid stack packets when decoding subtitles

    4 mars 2021, par Andreas Rheinhardt
    avcodec/decode : Avoid stack packets when decoding subtitles
    

    Use AVCodecInternal.buffer_pkt (previously only used in
    avcodec_send_packet) instead of stack packets when decoding subtitles.
    Also stop sharing side-data between packets and use the user-supplied
    packet directly for decoding when possible (no subtitle decoder ever
    modifies the packet it is given).
    Reusing AVCodecInternal.buffer_pkt is based upon an idea from James
    Almer.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/decode.c