
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (83)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (12604)
-
Get missing frame number in ffmpeg decoder
8 octobre 2012, par user1728137When using ffmpeg for decoding.it skips some frames and didn't decode them.
I want to get the missing frame number as they are in original file. -
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 ? -
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 ?