Recherche avancée

Médias (91)

Autres articles (24)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6682)

  • FFMPEG - How to replace a specifed set of colors in a video with another specified set of colors ?

    18 juillet 2022, par pixerstoodios

    For example, I have a video of red, yellow, green, cyan, blue, and magenta objects. I have a list of hex codes consisting of those colors and i want to replace each of those specific hex colors with another, completely different arbitrary color (i.e. brown, royal purple, navy blue, burgundy, tan, and white, respectively.)

    


    An illustration.

    


    What would be a command that can efficiently accomplish this task ?

    


  • FFmpeg How to combine two filter complex commands

    14 avril 2020, par Satish Bitla

    First command add logo to video
    
ffmpeg -y -i VIDEO.mp4 -i image.png \
 -filter_complex "overlay=x=main_w-overlay_w-(main_w*0.01):y=main_h-overlay_h-(main_h*0.01)" \
 OUT.mp4

    



    Second command green screen replace

    



    ffmpeg -i bg.jpg -i input.mp4 -filter_complex "[1:v]chromakey=0x3BBD1E:0.1:0.2[ckout] ;[0:v][ckout]overlay[o]" -map [o] -map 1:a output.mp4

    


  • Multicolor text in FFmpeg

    14 septembre 2018, par Holy_diver

    How to use drawtext in ffmpeg to draw multicolor text over video ?
    Example : I want to highlight a proper nouns in a sentence,
    "XYZ company shares hike 91%"
    highlight XYZ white yellow
    highlight 91% with green

    If you have any other approach not using ffmpeg to draw multicolor text over video, that would work too.