Recherche avancée

Médias (91)

Autres articles (73)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (11165)

  • How to extract only 3 video frames at 0,5,10 seconds using FFMPEG ? [on hold]

    20 juillet 2013, par kheya

    Command I am using :

    ffmpeg -i input -c:v libx264 -movflags +faststart -preset slow -crf 22 -b:v 500k -c:a libvo_aacenc -b:a 128k "out.mp4" -r 1 -t 3 -ss 3 -s sqcif "%%1d.jpg"
  • FFMPEG zoompan filter cut short my video and slowed it down [on hold]

    9 décembre 2018, par Ewan Sou

    I am using FFMPEG (version 4.0.2) to zoompan my video. My code is as below

    ffmpeg -y -i input.mp4 -loop 1 -i overlay.png -ss 0 -t 10 -filter_complex "[0:v]scale=iw+iw:ih+ih, zoompan=z='if(lte(pzoom,1.0),1.6,max(1.001,pzoom-0.004))':d=1:x='iw/2-(iw/zoom/2)':y='0':s=720x720, setsar=1 [v0];[1:v]crop=720:720,fade=t=in:st=0:d=1,fade=t=out:st=3:d=1[v1];[v0][v1] overlay [v]" -map "[v]" -f mp4 -preset ultrafast -y output.mp4

    Essentially, what this code should do is slowly pan out from the center of my video, with a logo (overlay.png) fading in and out.

    This input.mp4 is 10 seconds. With the above code, the final video duration is 10 seconds still. But its not the full footage, it is cut short and compensated with slow motion to make it 10 seconds still...

    I need the final video to not be cut off at all. It should be the full footage and no slow motion effect.

    Anyone has any ideas what I am doing wrong ?

    Input video is at : https://instantly.sg/photobooth/input.mp4

    Overlay is at : here

    Thanks in advance !

  • ffmpeg command to combine audio and images

    4 février 2013, par jeet

    I'm trying to achieve something which I earlier thought should be a simple task.
    Is there a ffmpeg command that can do the following :

    convert an audio.wav file to a video,
    Add some 100 pics (img%d.png) to the video so they "automatically" stretch to fill the entire length of the video.

    I don't want to set the frame rate manually because it's either making the audio go ahead or lack behind.

    I also don't want the following to happen, which happenned when I used "loop_input" :

    A short video of images got created, which played fast and then repeated itself for the entire duration of the audio.

    Please let me know the command.

    I've currently tried the following, but these are not giving me the desired results :

    This one makes, but video goes fast and audio is not full :

    ffmpeg -i img%d.png -i audio.wav -acodec copy output.mpg

    This one makes short video which repeats for full audio duration :

    ffmpeg -loop_input -shortest -i img%d.png -i audio.wav -acodec copy output.mpg

    This one works nearly, but "-r 4" makes video go slow and audio goes ahead. If I use "-r 5" then audio goes slow, and video goes ahead :

    ffmpeg -r 4 -i img%d.png -i audio.wav -acodec copy -r 30 output.mpg