
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (94)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (8723)
-
FFmpeg - Add number to output
16 avril 2016, par SkretzoIs there any way to automatically add a number to the output file with FFmpeg ? I don’t want to override previous outputs, and I don’t want to set the output number manually. I am looking for something like output(n+1).
ffmpeg -i input.avi -ss 00:00:05 -to 00:00:10 -c copy output1.avi -i input.avi -ss 00:00:20 -to 00:00:35 -c copy output2.avi
-
How do I use ffmpeg to extract frames starting at a specific number ?
19 octobre 2020, par Gridzbi SpudvetchI've decided for some reason to upscale an entire 90-minute movie using AI. Problem is, I have several demo scenes that have already been upscaled, and I want to keep those frames rather than upscaling them again. Basically I want to export frames starting at a specific number, like
ffmpeg -i scene1.mp4 scene1/%10d+[starting number].jpg
. If the specified number were 1550, for example, the first frame it would export would be0000001550.jpg
. I still want it to start at the first frame of the input video, though ; the only things I want to change are the names of the output files. Is there a way to do this ?

-
Frame Number Overlay With FFmpeg syntax
6 juillet 2020, par DougMThis has been covered before, and the consensus solution is (minor variations on) the following command line :


ffmpeg -i input.MP4 -vf "drawtext=fontfile=Arial.ttf:text='%{frame_num}':r=25:x=(w-tw)/2:y=h-(2*lh):fontcolor=white:fontsize=50:" -c:a copy output.mp4



Unfortunately, when I apply this to my MP4 files the text that gets placed is "r=25". I've tried every variation that I can think of, but none of them result in a frame number displayed that correlates to the frames.


I know that it is aware of frame numbers because as it runs in the command line it displays the frame number that it's working on :


. . .
frame= 132 fps= 13 q=-1.0 Lsize= 1040kB time=00:00:01.07 bitrate=7913.9kbits/s speed=0.11x
. . .


Can you please help me with the correct syntax for placing the frame number in the video ?