
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)
-
ffmpeg : Convert any Video to padded and scaled 720p
29 mai 2014, par capitalgI looked for 2 hours through the documentation, but I couldn’t figure it out.
I currently write a script and now I need to concat up to 10 videos with different ratios/framerates/codecs/size etc.
Currently I work with the following :
ffmpeg.exe -i part1.mp4 -i part2.mp4 -filter_complex \
"[0:v]pad=width=1280:height=720:color=black[v1]; \
[1:v]scale=1280:720[v2]; \
[v1][0:a][v2][1:a]concat=n=2:v=1:a=1[outv][outa]" \
-map "[outv]" -map "[outa]" -c:v libx264 -preset ultrafast -qp 0 output.mkvThis does attach the video but doesn’t upscale the 1st video (which is in 640x480, the 2nd video is in 720p). I can put it somewhere with x and y, but it won’t grow to the full screen.
And as I’m already asking, here’s another question :
ffmpeg.exe -i part1.mp4 -i part3.mp4 -i part2.mp4 -filter_complex \
"movie=part1.mp4, scale=1280:720 [v1] ; \
amovie=part1.mp4 [a1] ; \
movie=part3.mp4, pad=width=1280:height=720:x=160:y=0:color=black, scale=1280:720 [v2] ; \
amovie=part2.mp4 [a2] ; \
movie=part2.mp4, scale=1280:720 [v3] ; \
amovie=part2.mp4 [a3] ; \
[v1] [v3] [v2] concat=n=3 [outv] ; \
[a1] [a3] [a2] concat=n=3:v=0:a=1 [outa]" \
-map "[outv]" -map "[outa]" -c:v libx264 -preset ultrafast -qp 16 output.mp4why does I have to write
concat=n=3:v=0:a=1 [outa]
but onlyconcat=n=3 [outv]
. When I also writeconcat=n=3 [outa]
it will result in an error. -
Как пересчитать продолжительность в метаданных видео ?
1er juin 2020, par ArsAfter speeding up the video,



ffmpeg -i in.mp4 -vf "setpts=PTS/4000" -r 120 0(4kx).mp4




the video lasts a split second, but its duration in the metadata remains a few hours. Because of that ffmpeg does not process it correctly. How can I set the correct duration in the metadata of a large number of videos ?


-
How to recalculate duration in video metadata ?
2 juin 2020, par ArsAfter speeding up the video,



ffmpeg -i in.mp4 -vf "setpts=PTS/4000" -r 120 0(4kx).mp4




the video lasts a split second, but its duration in the metadata remains a few hours. Because of that ffmpeg does not process it correctly. How can I set the correct duration in the metadata of a large number of videos ?