Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (89)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (15268)

  • 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 ?