Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (80)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

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

  • panning and zooming multiple images with ffmpeg

    16 mars 2017, par user1796752

    I have multiple images that I want to fade and zoompan for each image but when I do what others have said, the first image works perfect and the second is black. I want to have 25 images and the same thing occurs with every image black except the first one. I am sure I am missing something elementary. Please help.

    ffmpeg -r .1 -i image_1.jpg -i image_2.jpg -vf "zoompan=z='min(zoom+0.0015,1.5)':d=125,fade=t=in:st=0:d=0.5,fade=t=out:st=4.5:d=0.5"  -pix_fmt yuv420p output.mp4
  • FFMPEG : Converting WAV to MP4 with filter loops forever

    30 juin 2021, par David Ferris

    I'm using the following basic ffmpeg commend to convert a WAV file to an MP4.

    


    ffmpeg -i response.wav -s 1980x1080 -c:a aac -b:a 128k aNewVideo.mp4

    


    This is great, however I'd like to include a black background on the mp4 file, and as it stands this doesn't add ANY background (see below).

    


    enter image description here

    


    I have tried to include the following filter to add this background, which works, however it loops forever, and when I stop it manually I get a file which is hours long with the first 20 seconds or so being my original audio.

    


    ffmpeg -f lavfi -i color=c=black:s=1280x720:r=5 -i response.wav -s 1980x1080 -c:a aac -b:a 128k aNewVideo.mp4

    


    How can I add this black background without running into this infinite loop problem ?

    


  • ffmpeg merge video and audio + fade out

    1er mai 2016, par jacky brown

    I have one video file and one audio file.
    I want to merge them together that the final output video will be in the length of the video and will contain the audio in the background.

    i did :

    ffmpeg -i output.avi -i bgmusic.mp3 -filter_complex " [1:0] apad " -shortest out.avi

    but the background audio is cut in the end of the final merge movie.
    i want it to fade out nicely.

    how can i do it ??

    but the background audio is cut in the end of the final merge movie.
    i want it to fade out nicely.

    how can i do it ??

    thanks.