Recherche avancée

Médias (91)

Autres articles (19)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

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

Sur d’autres sites (5504)

  • How to combine photos and music into videos using ffmpeg ? [closed]

    1er avril 2020, par john Mitrich

    There is a folder in which there are many pairs of files with the same names in two formats, namely mp3 and jpeg, I need an ffmpeg code that combines these pairs of files in the video with the same names as its parts and lasts as long as it lasts music. In words, everything is simple, but in fact, I have been suffering for 2 days, please help

    


  • Create video with ffmpeg from youtube URL ?

    24 septembre 2014, par agustinalesso

    I’m creating a video player for an e-learning platform with javascript. We let our users to upload videos or images & audio from files or youtube videos via URL. When it’s not a Youtube URL, we convert the files in our servers using FFMPEG so our player only handles the same type of files, but I’m having some issues to control the Youtube video from our own controls. What I want to know : Is there a way to take the youtube URL and create a video file using FMMPEG or some other similar way ? The Idea is NOT to control youtube videos using the youtube API, but using instead our own controls.

  • Mix voiceover and background music with delay and volume

    6 août 2019, par oldman

    I don’t master ffmpeg but I really need to mix a voiceover with a background song.

    The voiceover must start 5 seconds after the song, and must end 5 seconds before the song ends.

    The music volume must be loud for the first 5 seconds and the last 5 seconds, but during the voiceover it should remain low.

    Searching the internet, the closest I could come to my goal was this :

    ffmpeg -i music.mp3 -i voiceover.mp3 -filter_complex "[0]asplit[a][b]; [a]atrim=duration=5,volume='1-max(0.25*(t-13),0)':eval=frame[pre]; [b]atrim=start=5,asetpts=PTS-STARTPTS[song]; [song][1]amix=inputs=2:duration=shortest:dropout_transition=0[post]; [pre][post]concat=n=2:v=0:a=1[mixed]" -map " "[mixed]" output.mp3

    Could someone help me complete this script ?