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)

  • add background music to video using ffmpeg ?

    3 décembre 2019, par sibbasa

    I have a video file (mp4) with sound, how can I add background music to it ? Using ffmpeg.

    Example please :)
    I tried like this :

    ffmpeg -i son.wav -i video_origine.mp4 video_finale.mp4

    But this method muffles the main sound.

  • Bot isn't playing music [closed]

    15 mai 2020, par DevTeddy

    My bot can join, but it isn't playing any music ! The code is written is Javascript, and I am using Discord.js , Node.js and FFmpeg. The prefix and token are in a seperate JSON file. There are no errors in the Console, though. Also, it says the "added song to queue" message twice, for some reason. I have already tried using VS Code's debugger and checked it for errors. Please help me !

    



    My code is at : https://github.com/Dev-Ted/ForestBot

    



    Thanks !

    


  • PHP+FFMPEG add music to video alternative ?

    16 décembre 2013, par user3065043

    I create the code using php+ffmpeg to add music to video.
    this code works fine but
    My cpu usage 100% when it execute.
    Is any other alternative for this ??
    any alternetive to ffmpeg ??

    <?php
    shell_exec("ffmpeg -i video.avi -i audio.mp3 -map 0 -map 1 -codec copy -shortest output_video.avi")
    ?>