Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (63)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (10143)

  • api/api-band-test : Remove write-only variable

    16 octobre 2022, par Andreas Rheinhardt
    api/api-band-test : Remove write-only variable
    

    Besides being write only it had the wrong type :
    An uint8_t is definitely not enough to store the size
    of these buffers.

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

    • [DH] tests/api/api-band-test.c
  • x86/hevcdec : refact, remove duplicate code in HEVC_SAO_{BAND, EDGE}_FILTER

    21 décembre 2024, par Shaun Loo
    x86/hevcdec : refact, remove duplicate code in HEVC_SAO_BAND, EDGE_FILTER
    

    This is a part of Google Summer of Code 2023

    Co-authored-by : Nuo Mi <nuomi2021@gmail.com>

    • [DH] libavcodec/x86/hevc/sao_10bit.asm
  • avcodec/atrac3 : fix inconsistent band num calculation

    20 août, par Daniil Cherednik
    avcodec/atrac3 : fix inconsistent band num calculation
    

    'decode_spectrum' reads 5 bits from bitstream to get
    number of encoded subbands – so 31 means all 32
    subbands are encoded. This value also is used to
    determinate the number of used band in the hybrid
    filterbank.

    'subband_tab' array contains 33 values of MDCT spec
    line positions started from 0 line and used to map
    subband number in to the range of mdct lines.

    Since the subband_num returned by decode_spectrum
    actually is number – 1 and subband_tab started from 0
    we need to add 1 to make num_bands calculation correct.

    • [DH] libavcodec/atrac3.c
    • [DH] tests/fate/atrac.mak