Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (60)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (6740)

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

    


  • 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

    


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