Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (11525)

  • configure : Add (dnxhd|snow)_encoder->videodsp dependency

    9 octobre 2022, par Andreas Rheinhardt
    configure : Add (dnxhd|snow)_encoder->videodsp dependency
    

    These encoders currently rely on an implicit dependency via mpegvideo.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] configure
  • 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.

    &#xA;

    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.&#xA;ffmpeg.crop(stream, 46,117,390,390)&#xA;Any insight is appreciated.

    &#xA;

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

    &#xA;

    ffmpeg -i a.png -i b.png -filter_complex hstack=inputs=2 output.png&#xA;

    &#xA;

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

    &#xA;