Recherche avancée

Médias (91)

Autres articles (29)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5079)

  • Image Sequence To Video

    17 novembre 2016, par Chris92

    image

    I’ve an image sequence with a framerate of one second that overwrites everytime the same file (like shown in the pic). I want to make a video from that files and send that as a video stream to the server with ffmpeg. Do anyone knows if this is possible ?

    I would thanks for every answer i get.

  • ffmpeg - Center image without stretching

    10 avril 2014, par Daniele

    I'm trying with ffmpeg to insert an image with vertical orientation in a video with 1280x720 resolution. Actually ffmpeg stretch the image but i want that center image (so with height 720) and doesn't stretch width. Any solution ?

    ffmpeg -r 1/5 -pattern_type glob -i '*.jpg' -i 1.mp2 -af
    "afade=t=out:st=15:d=5" -vf "format=yuv420p" -shortest -s 1280x720
    -aspect 16:9 -codec:v libx264 out.mp4

  • Fastest way to create long video from 1 image with ffmpeg

    12 février 2015, par johnvantes

    What is the fastest way to create a video with long duration (1 hour), from a single image ?
    Here is what I have now :

    ffmpeg -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 3600 -pix_fmt yuv420p -vf scale=640:480 image.mp4

    But it’s taking too long in my case, around 40 minutes. The image size I am using is 800KB.

    Many many thanks in advance !