
Recherche avancée
Autres articles (57)
-
Support de tous types de médias
10 avril 2011Contrairement à 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) (...)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (5636)
-
Overlay audio over video FFMEPG
15 mars 2018, par Benjamin SweneyI’m wanting to overlay an audio recording over a video using FFMEPG PHP or more specially Laravel (if possible). The audio clip will need to replace the videos audio, or better if possible set the videos audio volume to a predefined value and overlay the audio.
The audio clip will always be longer than or the same length as the video and can not be clipped. Side note, how will this be handled ? Black screen or frozen last frame, or ?
Would appreciate someone pointing me in the right direction.
Much appreciated !
-
FFMPEG command execution error c#
26 mars 2018, par Satvinder SinghI’m trying to create a watermarked audio file using C# but getting error every time I execute the command. The command runs successfully when I run it on command prompt and creates a watermarked audio file but gives error when I run it on my c# code.
Command : ffmpeg -i A.mp3 -filter_complex "amovie=B.wav:loop=0,asetpts=N/SR/TB[beep] ;[0][beep]amix=duration=shortest,volume=1" out-watermarked.mp3
Error : exited with exit code = 1 STDOUT
Thanks in advance !!
-
ffmpeg use amix and adelay to play ad over song
28 juin 2020, par snowkiterdudeI have two mp3 files, one long and one short(a song and an ad). I need the ad to play over the song starting 15 seconds into the song. I also need the volume of the song to fade out/in slightly before and after the ad. I have tried using amix with adelay but just can't get it right.



here is something close but broken.



ffmpeg -i song.mp3 -i ad.mp3 -filter_complex "amix=inputs=2:duration=first:dropout_transition=2;adelay=0|15000" output.mp3




How can I get the ad to mix with the song properly ?