Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (88)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (12772)

  • Demo : Add sample code for Bootstrap 4 usage (#2173)

    20 juin 2018, par gwhenne
    Demo : Add sample code for Bootstrap 4 usage (#2173)
  • movenc : Heuristically set the duration of the last sample in a fragment if not set

    6 mars 2015, par Martin Storsjö
    movenc : Heuristically set the duration of the last sample in a fragment if not set
    

    Even if this is a guess, it is way better than writing a zero duration
    of the last sample in a fragment (because if the duration is zero,
    the first sample of the next fragment will have the same timestamp
    as the last sample in the previous one).

    Since we normally don’t require libavformat muxer users to set
    the duration field in AVPacket, we probably can’t strictly require
    it here either, so don’t log this as a strict warning, only as info.

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

    • [DBH] libavformat/movenc.c
    • [DBH] libavformat/movenc.h
  • How to avoid audio sample 16bit clipping after equalization ?

    28 mai 2013, par testCoder

    I have samples which come from ffmpeg, very often it is 16 bit samples (short type), i have used iir band pass filter with dbGain as described here, after filtering i sometimes got a short type overflow and result of it is some noise when calculated sample value go out from 32767/-32767, Is any way to escape audio pcm sample clipping. May be exists any approaches ?

    I have googled but not found any worked example ?

    UPDATE

    When i cast transfer function calculation result to integer and check overflow then noise still occurs: :

    int result = A1 * ((int) Rx) + A2 * ((int) Rxx) + A3 * ((int) Rxxx)
                       - B1 * ((int) Ryy) - B2 * ((int) Ryyy);
    if (result > 32767)
       result = 32767;
    if (result &lt; -32700)
       result = -32700;
    y = (short) result;