Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (4)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (3551)

  • Revision 16049 : |couleur_foncer et |couleur_eclaircir peuvent prendre un argument ...

    8 septembre 2010, par cedric@… — Log

    |couleur_foncer et |couleur_eclaircir peuvent prendre un argument optionnel entre 0 et 1 0 correspond a la couleur inchangee, 1 a la couleur extreme (noir ou blanc) Le comportement |couleur_foncer correspond a |couleur_foncer0.5 et conserve le fonctionnement historique du (...)

  • adpcm : Write the proper predictor in trellis mode in IMA QT

    6 juin 2014, par Martin Storsjö
    adpcm : Write the proper predictor in trellis mode in IMA QT
    

    The actual predictor value, set by the trellis code, never
    was written back into the variable that was written into
    the block header. This was accidentally removed in b304244b.

    This significantly improves the audio quality of the trellis
    case, which was plain broken since b304244b.

    Encoding IMA QT with trellis still actually gives a slightly
    worse quality than without trellis, since the trellis encoder
    doesn’t use the exact same way of rounding as in
    adpcm_ima_qt_compress_sample and adpcm_ima_qt_expand_nibble.

    Fixes part of Ticket3701

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/adpcmenc.c
    • [DH] tests/ref/acodec/adpcm-ima_qt-trellis
  • adpcm : Fix trellis encoding of IMA QT

    5 juin 2014, par Martin Storsjö
    adpcm : Fix trellis encoding of IMA QT
    

    This was broken in 095be4fb - samples+ch (for the previous
    non-planar case) equals &samples_p[ch][0]. The confusion
    probably stemmed from the IMA WAV case where it originally
    was &samples[avctx->channels + ch], which was correctly
    changed into &samples_p[ch][1].

    Fixes part of Ticket3701

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/adpcmenc.c