
Recherche avancée
Autres articles (51)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Supporting all media types
13 avril 2011, parUnlike 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 (...)
Sur d’autres sites (9364)
-
adding background music to video using ffmpeg
3 avril 2021, par Captain_ZarakiI am trying to add bacground music to a video using ffmpeg and it is working fine but I want if length of video is more than the music file then music should start playing again till the video is over -


ffmpeg -i 1.mp4 -i 2.mp3 -map 0:v:0 -map 1:a:0 output.mp4



is there anyway to perform this action ?


-
Shazaam-esque music comparison [closed]
17 janvier 2021, par Matthew TripI have two files, a
Full.mp4
and aCut.mp4
I do not care about the video. I want to check ifCut
appears inFull
at any point. I have tried comparing the streams and their byte arrays but Rider keeps showing memory issues without an explanation. What is the general approach I should take ?

-
How can I merge intro.mp4, image.png, music.mp3 in one command ?
10 décembre 2020, par DtomperHi I want to make a simple music video where an intro plays then an image shows up while the song is playing in the background.


I have this command that mixes the song and the image, all I need now is the intro playing at the beginning :


ffmpeg -r 1 -loop 1 -y -i image.png -i music.mp3 -c:a copy -r 1 -vcodec libx264 -shortest mix.mp4