Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • avcodec/hevcdec : apply H.274 film grain

    29 septembre 2021, par Niklas Haas
    avcodec/hevcdec : apply H.274 film grain
    

    Similar in spirit and design to 66845cffc3bbb, but slightly simpler due
    to the lack of interlaced frames in HEVC. See that commit for more
    details.

    For the seed value, since no specification for this appears to exist, I
    semi-arbitrarily decided to base it off the POC id alone, since there's
    no analog of the idr_pic_id in HEVC's I-frames. This design is stable
    across remuxes and seeks, but changes for adjacent frames with a period
    that's typically long enough not to be noticeable, which makes it
    satisfy all of the requirements that a film grain seed should have.

    Tested with and without threading, using a patch to insert film grain
    metadata artificially (for lack of real files containing film grain).

    • [DH] libavcodec/hevc_refs.c
    • [DH] libavcodec/hevcdec.c
    • [DH] libavcodec/hevcdec.h
  • avcodec/av1_vaapi : setting 2 output surface for film grain

    12 octobre 2021, par Fei Wang
    avcodec/av1_vaapi : setting 2 output surface for film grain
    

    VAAPI needs 2 output surface for film grain frame. One used for
    reference and the other used for applying film grain and pushing
    to downstream.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vaapi_av1.c
  • avcodec/h264_picture : don't assume Film Grain Params side data will be present

    17 octobre 2021, par James Almer
    avcodec/h264_picture : don't assume Film Grain Params side data will be present
    

    If a decoding error happens before frame side data is allocated, this assert may be
    triggered. And since applying film grain is not enforced (we just warn it wasn't
    applied and move on), we can just do that in such scenarios.

    Fixes : Assertion failure
    Fixes : clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-5528650032742400

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/h264_picture.c