Recherche avancée

Médias (91)

Autres articles (98)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (11848)

  • vc2enc : fix segfault

    21 mars 2016, par Rostislav Pehlivanov
    vc2enc : fix segfault
    

    Fixes trac bug #5353

    Uninitialized memory for the initial quantization index

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/vc2enc.c
  • AAC Encoder : clipping avoidance

    21 juillet 2015, par Claudio Freire
    AAC Encoder : clipping avoidance
    

    Avoid clipping due to quantization noise to produce audible
    artifacts, by detecting near-clipping signals and both attenuating
    them a little and encoding escape-encoded bands (usually the
    loudest) rounding towards zero instead of nearest, which tends to
    decrease overall energy and thus clipping.

    Currently fate tests measure numerical error so this change makes
    tests using asynth (which are near clipping) report higher error
    not less, because of window attenuation. Yet, they sound better,
    not worse (albeit subtle, other samples aren’t subtle at all).
    Only measuring psychoacoustically weighted error would make for
    a representative test, so that will be left for a future patch.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/aacpsy.c
    • [DH] libavcodec/psymodel.h
    • [DH] tests/fate/aac.mak
  • aacenc_tns : implement temporal noise shaping

    21 août 2015, par Rostislav Pehlivanov
    aacenc_tns : implement temporal noise shaping
    

    This commit implements temporal noise shaping support in the
    encoder, along with an -aac_tns option to toggle it on or off
    (off by default for now). TNS will increase audio quality
    and reduce quantization noise by applying a multitap FIR filter
    across allowed coefficients and transmit side information to the
    decoder so it could create an inverse filter.

    Users are encouraged to test the new functionality by enabling
    - aac_tns 1 during encoding.

    No major bugs are observable at this time so after a while if no
    new problems appear and if the current implementation is deemed
    of high enough quality and stability it will be enabled by default,
    possibly at the same time the encoder has its experimental flag
    removed and becomes the standard aac encoder in ffmpeg.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/aacenc_tns.c
    • [DH] libavcodec/aacenc_tns.h