Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (25)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (4093)

  • 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
  • avformat/segafilmenc : Don't store packet info in linked list

    17 juillet 2020, par Andreas Rheinhardt
    avformat/segafilmenc : Don't store packet info in linked list
    

    Up until now, the Sega FILM muxer would store some information about
    each packet in a linked list. When writing the trailer, the information
    in said linked list would be used to write a table in the file header.
    Each entry in said table is 16 bytes long, but each entry of the linked
    list is 32 bytes long (assuming 64 bit pointer and no padding).
    Therefore it makes sense to remove the linked list and write the array
    entries directly into a dynamic buffer while writing the packet (this is
    possible because the table entries don't depend on any information not
    available when writing the packet (the offset is not relative to the
    beginning of the file, but to the end of the table). This also
    simplifies writing the array at the end (there is no need to traverse a
    linked list).

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

    • [DH] libavformat/segafilmenc.c
  • avformat/mxfenc : Store locally whether DNXHD profile is interlaced

    9 novembre 2021, par Andreas Rheinhardt
    avformat/mxfenc : Store locally whether DNXHD profile is interlaced
    

    It is just a flag per supported CID. So there is no reason to use
    an avpriv function for this purpose.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/mxfenc.c