Recherche avancée

Médias (91)

Autres articles (75)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9123)

  • avformat/mov : check color parameter type explicitly.

    24 mars 2015, par Jochen Strunk
    avformat/mov : check color parameter type explicitly.
    

    Fixes ticket #4387.

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

    Note, Vittorio Giovara had submitted a very similar fix to me privately
    a few hours before this, iam applying Jochens because it comes with a
    commit message too and i had not yet applied Vittorios, but For sake
    of credit, Vittorio independently solved this first

    • [DH] libavformat/mov.c
  • avcodec/mjpegdec : Support >8bpc color mjpeg

    11 septembre 2013, par Michael Niedermayer
    avcodec/mjpegdec : Support >8bpc color mjpeg
    

    Fixes Ticket2939

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

    • [DH] libavcodec/mjpegdec.c
  • ffmpeg color shift in tiff output

    5 avril 2014, par pike

    I'm using these commands to generate tiff and jpeg output from the same input mpeg2 file

    ffmpeg -ss 14 -i '../test/test-in.mpg' -q:v 3 -vframes 1 -aspect
    4:3 -vf
    "crop=22/23*in_w:22/23*in_h,yadif,scale=736:539,pad=736:552:0:7"
    '../test/test-out.jpg'

    and

    ffmpeg -ss 14 -i '../test/test-in.mpg' -vframes 1 -aspect 445:326
    -vf "crop=22/23*in_w:22/23*in_h,yadif,scale=720:527"
    '../unit-test/out.tiff'

    the tiffs are very purple/pinkish. the jpegs are sort of ok.

    what can be causing the color shift in the tiff output, and how could i prevent it ?