Recherche avancée

Médias (91)

Autres articles (32)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5385)

  • tests/checkasm/svq1enc : Use proper range for input

    6 mai 2024, par Andreas Rheinhardt
    tests/checkasm/svq1enc : Use proper range for input
    

    ssd_int8_vs_int16 is only called from encode_block()
    in svq1enc.c ; it calls it in stages : At stage 0,
    the int16_t array contains the difference of two
    uint16_t. At each of the following stages, the
    int16_t array is filled by subtracting an int8_t from
    the current stage's int16_t array. The maximum stage
    is five, so the int16_t are in the range
    (-255 - 5 * 127)..(255 + 5 * 128).

    This commit modifies the checkasm test to only use
    values from this range, fixing (undefined) integer overflow
    in the test.

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

    • [DH] tests/checkasm/svq1enc.c
  • audio dynamic range compression in php

    28 mai 2020, par monu214

    Is this possible to dynamic audio range compression in PHP. There is a lot of confusion between compression of audio, what I mean of audio compression here is described in this article.

    &#xA;&#xA;

    Some posts I saw here about the audio compression which only converts the audio format from wav to mp3 or other formats using FFmpeg, but what I want here is to change some audio settings like threshold, compression ratio, attack time, release time which is basic settings that can be used in audio compression.

    &#xA;&#xA;

    Is there any way I can do this in server-side using PHP ?

    &#xA;

  • avformat:matroskadec : use a define to mark the EBML length is unknown

    23 février 2019, par Steve Lhomme
    avformat:matroskadec : use a define to mark the EBML length is unknown
    

    Unifying the way the EBML unknown length is signaled, rather than using two
    incompatible values. UINT64_MAX cannot be read as a valid EBML length with the
    current code.

    Co-authored-by : Steve Lhomme <robux4@ycbcr.xyz>
    Co-authored-by : Dale Curtis <dalecurtis@chromium.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskadec.c