Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (90)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7448)

  • vaapi_encode_h264 : Set level based on stream if not set by user

    19 septembre 2018, par Mark Thompson
    vaapi_encode_h264 : Set level based on stream if not set by user
    
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/vaapi_encode_h264.c
  • random_seed : Rewrite the generic clock() based seed code

    11 juin 2012, par Michael Niedermayer
    random_seed : Rewrite the generic clock() based seed code
    

    The new code is faster and reuses the previous state in case of
    multiple calls.

    The previous code could easily end up in near-infinite loops,
    if the difference between two clock() calls never was larger than
    1.

    This makes fate-parseutils finish in finite time when run in wine,
    if CryptGenRandom isn’t available (which e.g. isn’t available if
    targeting Windows RT/metro).

    Patch originally by Michael Niedermayer but with some modifications
    by Martin Storsjö.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavutil/random_seed.c
  • avcodec/tiff : Restrict tag order based on specification

    20 août 2020, par Michael Niedermayer
    avcodec/tiff : Restrict tag order based on specification
    

    "The entries in an IFD must be sorted in ascending order by Tag. Note that this is
    not the order in which the fields are described in this document."

    This way various dimensions, sample and bit sizes cannot be changed at
    arbitrary times which reduces the potential for bugs.
    The tag reading code also on various places assumes that numerically previous
    tags have already been parsed, so this needs to be enforced one way or another.

    If this commit causes problems with real world files which are not easy to fix
    then some other form of checks are needed to ensure the various dependencies
    in the tag reading are not violated.

    Fixes : out of array access
    Fixes : 24825/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-6326925027704832

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/tiff.c