Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (61)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11447)

  • avcodec/rawdec : Fix palette handling with changing palettes

    4 août 2016, par Michael Niedermayer
    avcodec/rawdec : Fix palette handling with changing palettes
    

    Fixes out of array access

    Fixes : poc.swf
    Found-by : 连一汉 <lianyihan@360.cn>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/rawdec.c
  • avcodec/iff : remove palette swapping for anim

    15 août 2016, par Paul B Mahol
    avcodec/iff : remove palette swapping for anim
    

    It appears it is wrong.

    • [DH] libavcodec/iff.c
  • How to extract organized palette from image/video with FFMPEG+Imagemagick ?

    24 avril 2017, par user780756

    I use FFMPEG and Imagemagick to extract the color palette from an image or video with a Windows batch file,

    :: get current folder name
    for %%* in (.) do set CurrDirName=%%~nx*

    :: get current filename
    for /R %1 %%f in (.) do (
       set CurrFileName=%%~nf
    )

    ffmpeg -i "%1" -vf palettegen "_%CurrFileName%_temp_palette.png"
    convert "_%CurrFileName%_temp_palette.png" -filter point -resize 4200%% "_%CurrFileName%_palette.png"

    del "_%CurrFileName%_temp_palette.png"

    This outputs something like,

    Palette

    I need this to have better transition throughout the color blocks though, like all blues from darkest to lightest then transitioning to greens, yellows etc. like,

    Better Palette

    Is there a way/switch to create this with either Imagemagick/FFMPEG ?