
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (38)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (5649)
-
How to speed up video and its timestamp to shorten video length, but represent time as it was recorded ?
7 janvier 2021, par Gonzalo AspeeI have a video recorded at 5 fps that I want to speed up to 30 fps to shorten it. That is simple enough as :


ffmpeg -i input.mp4 -r 30 -vf "setpts=0.16666*PTS" output.mp4



But when I try to add a timestamp to it with :


ffmpeg -i input.mp4 -r 30 -vf "setpts=0.16666*PTS, drawtext=text='%{pts\:localtime\:1610043985\:%Y\-%m\-%d %H\\\\\:%M\\\\\:%S.}%{eif\:mod(n,30)\:d}'" output.mp4



The timestamp does not longer represents the time as it was recorded (it should run faster now)


How to achieve this ?


-
How to speed up a video in order to shorten its length and embed a timestamp to represent time as it was recorded ?
8 janvier 2021, par Gonzalo AspeeI have a video recorded at 5 fps that I want to speed up to 30 fps to shorten it. That is simple enough as :


ffmpeg -i input.mp4 -r 30 -vf "setpts=(1/6)*PTS" output.mp4



But when I try to add a timestamp to it with :


ffmpeg -i input.mp4 -r 30 -vf "setpts=(1/6)*PTS, drawtext=text='%{pts\:localtime\:1610043985\:%Y\-%m\-%d %H\\\\\:%M\\\\\:%S.}%{eif\:mod(n,30)\:d}'" output.mp4



The timestamp does not longer represents the time as it was recorded (it should run faster now)


What would be the simplest way to achieve this on a single pass ?


-
How to speed up video conversion
3 février 2021, par ArheiselI'm currently working in a project that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.


For now I've tried copying the folder to a ram disk and using avconv which takes about a minute.


Here is my command :


avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg



- 

- Could ffmpeg work faster ?
- Is there a way to speed it up ?
- Which video format takes less time to convert to ?