Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (79)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8143)

  • Creating a 1-second, 1080p video with FFmpeg - Command Terminating Prematurely

    16 juillet 2023, par hello world

    I'm trying to create a 1-second video with a resolution of 1080p and a frame rate of 30 fps using FFmpeg. However, I'm encountering an issue where the command terminates prematurely and doesn't generate the desired output.

    


    I've been using the following command :

    


    ffmpeg -f lavfi -i color=c=black:s=1920x1080:r=30:d=1 -vf "fps=30" output.mp4



    


    The expected result is a black video with a duration of 1 second, but I'm unable to obtain the output file. The command exits without any error message, leaving me unsure of what might be causing the issue.

    


    I would appreciate any insights or guidance on how to troubleshoot this problem and successfully generate the intended video with FFmpeg.

    


    Thank you in advance for your help !

    


  • Invalid data found when processing input when using ffpmeg

    19 février 2023, par user12027978

    I want to convert an mp3 audio to an mp4 video with a cover.And i wrote this line of code in terminal.
ffmpeg -loop 1 -i black.jpg -i sound.wav -c:v libx264 -c:a aac -b:a 192k -shortest anhao.mp4
but got this error,enter image description here.I'm new to ffmpeg, and the code is copied from Internet, I really don't konw how to edit it.

    


    i expect converting mp3 to mp4 with an exact picture showing all the time
black.jpg is as follows
enter image description here

    


  • ffmpeg - replace all corrupted frames with a dummy

    24 août 2020, par Dmitry

    I look for a solution on how to detect and then automatically replace all corrupted (or completely broken) frames with a black one.

    


    I've already tried the following command, but the result is not quite what I actually need.

    


    ffmpeg -err_detect ignore_err -i video-with-broken-frames.avi -c copy fixed.avi


    


    This command detects and replaces all corrupted frames with the nearest good one. So that if I have 20 corrupted frames at the start of a video - they will be replaced with 21st good one. Well, what I need is to replace corrupted frames with some dummy, for instance with a black one. Or just some-how to indicate what that frame is broken and was copied.