
Recherche avancée
Autres articles (60)
-
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 (8239)
-
Frame Number Overlay With FFmpeg [closed]
12 mars 2013, par Kobi VersanoI need to overlay the frame number to each frame of a video file using ffmpeg for windows.
I succeeded in overlaying a timecode stamp with the
drawtext
filter using this code :ffmpeg -i video.mov -vcodec r210 -vf "drawtext=fontfile=Arial.ttf: timecode='01\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000099" -y output.mov
However, I need a frame number overlay and not a timecode one. Any help would be appreciated.
-
how can I get the total number of frames using ffmpegkit on Android (Kotlin) ?
1er mars 2023, par user44551I'm developing an Android app to encode a video using




com.arthenica.ffmpegkit.FFmpegKit




I would like to show users some information on the progress.
I managed to show how many frames are processed in real time. I would like to get the total number of frames in the original stream, so I can show a percentage.


How can I get the total number of frames in a video before I start encoding it ?


-
sequential number ffmpeg image file node.js
6 mars 2018, par mogami74I am now engaged in ffmpeg / node.js 8.9.4. I am to write a js script which converts a video stream into a raw image file and keeps on overwriting it. At the same time I’d like to get the sequential number of the frame from the begining of the convert process.
This program keeps on overwriting an image file, and other process is called to get this image file and its sequential number.
The ffmpeg option I wrote is below.
const ffmpeg = child_process.spawn('ffmpeg',[
"-i", stream_url,
"-rtsp_transport", "http",
"-pxm_fmt", 'rgb24',
"foobar.bmp"
]);I know output file name option like "%05d" but I don’t want to produce many image files.
Is it possible to get the sequential number of this outputted "foobar.bmp" by ffmpeg ?
additional
I also found "drawtext=text=%n" option.
This seems what I would like to get but I don’t want to draw in the picture. How can I get the value into a variable ?