Recherche avancée

Médias (91)

Autres articles (72)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (10327)

  • Ffmpeg Scale GIF with transparency

    13 juin 2017, par Shreyansh Sharma

    I am trying to scale gif image using ffmpeg without loosing transparent background of the gif image but currently i am getting image with white background the image is scaled but with white background .

    code which i use -

        -i input.gif -vf scale=x:y -gifflags +transdiff output.gif

    I am using Ffmpeg version n3.0.1

  • zscale : Add range options aliases to match scale ones

    25 mai 2017, par Vittorio Giovara
    zscale : Add range options aliases to match scale ones
    

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavfilter/vf_zscale.c
  • FFmpeg rotate and scale image overlay on video

    2 mai 2017, par 1234567

    I have been able to rotate image which overlays on video on android using this comand

    String[] complexCommand2 = {"-y", "-i", videoFilePath, "-i", imagepath, "-filter_complex","[1:v] rotate=30*PI/180:c=none:ow=rotw(iw):oh=roth(ih) [rotate];[0:v][rotate] overlay=40:10",  "-codec:a","copy", outputFilePath};

    However I want to also scale the image how can that be done