Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (65)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Les images

    15 mai 2013

Sur d’autres sites (6314)

  • How to create image with 2 images ffmpeg

    16 décembre 2017, par segoitz

    I want create with 2 or more images a unique image combining all images that i pass as parameter. I start proving with 2 parameters.

       firstpart = "/home/princebot/mazos/cartas/CannonCard.png"
       secondpart = "/home/princebot/mazos/cartas/FireballCard.png"
       a = subprocess.Popen(["ffmpeg","-i", firstpart, "-filter_complex", "scale=120:-1,","-i", secondpart, "-filter_complex","hstack" , "output.png"],stdout=subprocess.PIPE)
       a.communicate()[0].decode('utf-8')

    and the combine image dont create.

  • How to make video from images in android ? [on hold]

    1er août 2014, par harsh3898294

    Please tell me how can i do ?

    i want to make mpeg4 or mp4 video from set of images and add audio.
    also added animation between two images.

    i want to make app like
    https://play.google.com/store/apps/details?id=com.movisoft.photostory

  • Create video from images sorted in numerical order using ffmpeg

    6 décembre 2017, par user121392

    I have a bunch of images named pic1.png, pic2,png, pic24.png ,... etc. How can I use ffmpeg to create a video from them ? I have tried

       ffmpeg -f image2 -r $FRAMERATE -pattern_type glob -i "*.png" output.mp4

    but it does not sort the images in the right order. Is it because of the naming convention I used ? (pic2.png instead of pic002.png)