
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (74)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9420)
-
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 ?








-
FFmpeg accurate speed for x11grab
21 mars 2017, par Peter ShawHi I am trying to make a screencast in realtime with ffmpeg on Linux.
This is my call :
ffmpeg \
-f x11grab \
-s 1920x1080 \
-r 24 -framerate 24 \
-i $DISPLAY \
-preset ultrafast \
-tune zerolatency \
-pix_fmt yuv420p \
-acodec copy \
-vcodec libx264 \
-b:v 500k \
-crf 0 \
-threads 0 \
-y /data/production/out.mkv \
-an \
-t $LENAs far as i can tell this is near accurate and has a decent quality. Maybe there is a better settling, than let me please know.
As the screen will be captured the timing is not correct. I get a message with something like this :
frame= 901 fps= 22 q=0.0 size= 66553kB time=00:00:37.50 bitrate=14538.3kbits/s speed=0.905x
The Speed will turn around from 0.600x to 1.200x and is never stable to 1x.
I wonder if it’s possible to get a accurate timing.
I have to do a 60sec movie that is in speed exactly 100% like the frame-buffer is. Is it possible ?