Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (66)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9268)

  • FFMPEG Waveform with specific color

    17 octobre 2016, par Jeremy

    looking to get a waveform from an input that is this specific gold color #ad9557 (173/255, 149/255, 87/255) and have a transparent background / or black if not possible.

    I’m currently using this script to generate it :

    command = new String[]{
                   "-i", mRapFile.getAbsolutePath(),
                   "-filter_complex",
                   "showwavespic",
                   "-frames:v",
                   "1",
                   mWaveFormFile.getAbsolutePath()};

    The waveform is there but is a weird orange color now. How can I change this ?

    Thank you !

  • FFMPEG | add same effect with different settings several times to an input-file

    3 mai 2019, par Bamba675

    I’m trying to remove (for example) the greenscreen and the bluescreen of a video. To do this, I have to use FFMpeg.

    I already tried this one :

    ffmpeg -i background.mp4 -i greenbluefootage.mp4 -filter_complex "[1:v]chromakey=0x67FF00:0.1:0.1,chromakey=0x0061FF:0.1:0.1[aa];[0:v][aa] overlay" output.mp4

    The problem is, that just one color gets removed.
    I simply want to remove both colors (make them transparent) so the background can shine through.

  • How to use ffmpeg make a video from one still image with height from 0 to 100% animation

    28 août 2021, par Xiang Chen

    I want use a still image to make a transparent webm video, this video needs to have the following style :

    


      

    1. the image height auto increase from 0 to 100% in specific time.
    2. 


    3. I don't want scroll effect , what i want is just like the image spread from top to bottom
    4. 


    


    below is my demo image

    


    Please help me , thanks a lot