Recherche avancée

Médias (91)

Autres articles (13)

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

  • Add underlay audio to and audio at a specific time

    18 octobre 2018, par Yusuf Adeyemo

    Good day, I’m wonder if there is a way to add an audio as an underlay to another audio with FFmpeg at a specific time, more like a podcast advert sounds while the podcast is going on.
    Here is what I’ve tried so far

    ffmpeg -i audio.mp3 -i background.mp3 -filter_complex "[0:a]volume=1dB[a0];[1:a]volume=0.5[a1];[a0][a1]amerge=inputs=2[a]" -map "[a]" -ac 1 -ab 32000 -ar 22050 -strict -2 -y 10 audio_with_backgroud.mp3

    Thank you in advance

  • which video format is bessed for flat graphical animations

    26 avril 2020, par Zarc Rowden

    If i were to create an mp4 out of an svg animation, much of the color data in the output is the same, in PNG compression you can significantly reduce file size by reducing color. What I love about PNG is that the images always have a beautiful flat color / consistent look to them as opposed to jpegs which look very messy after antialiasing etc. (in the case of graphics to clarify). My feeling about .mp4 is that the compression technique results in frames that look "messy" like jpegs do when representing flat graphics or text. Is there a better codec out there ? Is this what webm does well ?
Thanks in advance for the input !

    


  • Merge/add audio in video file in specific position of video with ffmpeg command

    12 janvier 2021, par Aadi

    Example : I have a 10sec video and 4 sec audio file. I want to merge audio file in video from 5th sec of video to 9th sec. I want to mute entire video volume if user asked for it(optional).

    


    Please help me with this ffmpeg command, and Thanks in advance.

    


    I am using Android FFMPEG SDK. I haven't tried anything till now as I have no idea where to start.