Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (27)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (4529)

  • Convert image to black and white with ffmpeg

    20 septembre 2023, par maddogandnoriko

    How can I convert an image to b&w with ffmpeg ?

    


    I am making some coloring book images by decoloring images and reducing to a black outline. Even though they appear b&w most are not.

    


  • Change White to Black in a GIF or crop GIF into a circle with Python

    28 juin 2022, par tcleckner

    I have a GIF that I am trying to change all the white pixels to black. Not sure where to start.

    


    Alternatively the GIF could be cropped to just the circle graphic on the left side of the GIF. I have used ffmpeg-python to crop the GIF down to a square around the circle but have yet to be able to crop it to a circle.
ffmpeg.crop(stream, 46,117,390,390)
Any insight is appreciated.

    


  • ffmpeg hstack png and replace transparent color with white color

    21 juin 2022, par lucky1928

    Below command works fine to stack two png file with alpha channel left and right, The output png file will keep the alpha channel as well.

    


    ffmpeg -i a.png -i b.png -filter_complex hstack=inputs=2 output.png


    


    I wish replace alpha channel with white color (no need alpha channel), which parameter should I use ?