
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (24)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (6771)
-
Zoom and Moving based on audio information in FFMPEG
19 décembre 2019, par MattstirI recently wondered if it is possible to zoom or move things in FFMPEG based on an audio source.
I already played around with
complex filters
as they allow some audio visualization but didn’t really manage to move/zoom things based on sound. See good examples of complex filters used for audio visualization at : https://hhsprings.bitbucket.io/docs/programming/examples/ffmpeg/audio_visualization/index.htmlMy current situation is that i have multiple inputs which one of should react on sound/maybe even on special frequency’s.
-
FFMpeg Add multiple Gifs/Watermarks to a video
14 mai 2022, par GiaI'm trying to add various Gifs/Watermarks to a video, but I'm having a problem getting it to work properly.


We're assuming the video is 60 seconds long and I'm adding one Gif image. The output looks correct, the sound is on, the gif animates, and the video doesn't stop. here is the code :


add("-i")
 add("inputVideo.mp4")
 add("-stream_loop")
 add("-1")
 add("-i")
 add("gif_1.gif")
 add("-filter_complex")
 add("[0][1]overlay=x=18:y=461:shortest=1[out]) 
 add("-map")
 add("[out]")
 add("-map")
 add("0:a?") 
 add("-qscale:v")
 add("1")
 add("-preset")
 add("ultrafast")
 add("outputVideo.mp4")



When I try to add multiple GIFs, the video plays and the sound is on, one GIF animates, but the rest of the GIFs finish animating very early. this is the code


add("-i")
 add("inputVideo.mp4")
 add("-stream_loop")
 add("-1")
 add("-i")
 add("gif_1.gif")
 add("-i")
 add("gif_2.gif")
 add("-i")
 add("gif_3.gif")
 add("-filter_complex")
 add("[0][1]overlay=x=47:y=106:shortest=1[t1];[t1][2]overlay=x=551:y=1190[t2];[t2][3]overlay=x=-82:y=1279[out]) 
 add("-map")
 add("[out]")
 add("-map")
 add("0:a?") 
 add("-qscale:v")
 add("1")
 add("-preset")
 add("ultrafast")
 add("outputVideo.mp4")



What can I do to have all random GIFs added to animate while the video is playing for the full 60 seconds ?


-
ffmpeg correct audio streams when appending
28 janvier 2013, par bruxI am appending 2 mp4 files together using the following routine :
ffmpeg -y -i one.mp4 -vcodec copy -vbsf h264_mp4toannexb -acodec copy one.ts
ffmpeg -y -i two.mp4 -vcodec copy -vbsf h264_mp4toannexb -acodec copy two.ts
cat one.ts two.ts >> joined.ts
ffmpeg -y -i joined.ts -vcodec copy -acodec copy -absf aac_adtstoasc joined.mp4This works fine, however when one.mp4 has no audio stream (the file is created using ffmpeg from a single jpeg, so no sound), the routine appends the files but the audio of two.mp4 starts at the beginning of the video. how should I solve this problem ? Should I add switches to my append routine so that the audio in two.mp4 starts playing where it should, or should I add something to the ffmpeg command which creates the video from jpg ?
here is the command I use to create one.mp4 which contains no sound :
ffmpeg -y -loop 1 -i blah.jpg -t 3 -vcodec libx264 one.mp4