Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (18)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6145)

  • How to get output of the ffmpeg to the var and upload it using curl ?

    3 juillet 2022, par H4CK3R 5M4CK3R

    how to get the output of the ffmpeg to the var and upload it using curl, like here

    


    ffmpeg -i test.mp4 -f avi pipe:1 | cat > out | curl -F document=@"$out" https://api.telegram.org/bot<token>/sendDocument?chat_id=&#xA;</token>

    &#xA;

    In this command test.mp4 is input file and out put is out

    &#xA;

    Here I am trying to store output of ffmpeg to a var named out and then trying to upload it to telegram directly but nothing happen. Is there any way to do it ?

    &#xA;

  • avfilter/af_dynaudnorm : do not clip audio

    4 janvier 2020, par Paul B Mahol
    avfilter/af_dynaudnorm : do not clip audio
    

    Clipping can happen when smoothed gain is higher than maximum
    allowed gain factor for current frame and peak value option is
    set to enough low value.

    • [DH] libavfilter/af_dynaudnorm.c
  • How can I use FFMPEG to extract a specific color from a video and put it over alpha ?

    28 février 2024, par Michael Macha

    I have a rendered animation which looks great, but my original file was not saved properly and has lost some of the data. I can quickly get that data back, if I can extract a specific color from the rendered video to a new file or image sequence, over either a key color or preferably transparency.

    &#xA;

    Since I'm hand animating this, it's important that I automate as much as possible. I think FFMPEG could come to the rescue here and help me retrieve that data.

    &#xA;

    My current line is this :

    &#xA;

    ffmpeg -i ./"Light Bleeder Twirl Above.mp4" -vf "colorkey=0xe1eff9:0.1:0.1,format=rgba" -c:a copy ./out%04d.png&#xA;

    &#xA;

    Here, E1EFF9 is the color I'm after. It successfully extracts the handful of frames to PNG files, but it copies all of the data, not just E1EFF9.

    &#xA;

    I'm not sure why colorkey isn't doing what I want it to. If someone could provide some insight, it would be much appreciated.

    &#xA;

    Addendum : So, my idea worked in principle ; I did a chroma key with Kdenlive and color-to-alpha'd the black to transparency after a manual rescale. It isn't exactly the same, but it's very close and saves a lot of time. I still feel like it should most certainly have worked with FFMPEG, much faster, and would still like to know what was wrong with my script.

    &#xA;