Recherche avancée

Médias (91)

Autres articles (43)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

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

Sur d’autres sites (8003)

  • ffmpeg merge images with first image duration

    10 juillet 2015, par gfucka

    I’m try to merge some images in a mp4 with ffmpeg.
    I do it with :

    ffmpeg -r 25 -i %06d.jpg -s 480x360 -vcodec libx264 /output.mp4

    The first image must have duration of 3 seconds and the others must have framerate of 25.

    I know I can do this for set the duration of an image :

    -loop 1 -t 3 -i 000000.jpg-s 480x360 -vcodec libx264 output.mp4

    But how can I merge the two things ?? The first image of 3 seconds and the others image with 25 fps in one mp4 output ??

    Thank you

  • Find a specific image compare with video frames [closed]

    21 juin 2018, par Malva

    I have an image and a lot of frames, what should I do to find a specific image among frames ? I tried ffmpeg, but I definitely newbie there

  • How do I make a video with a static image background in FFMPEG ?

    21 février 2012, par Tim Scollick

    I have an image. I have a transparent FLV. I want to use the image as a background to the transparent FLV and have it outputted as FLV.

    This command works but the video is one frame long :

    ffmpeg -i background.png -f flv -vcodec flv -b 1500k -vf "movie=test_videos/alpha.flv [logo]; [in][logo] overlay=0:0 [out]" -s 800x464 -y output.flv

    I have tried to use the -t and -vframes parameters to no avail.

    Does anyone have any tips ?