Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (34)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10636)

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