
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (83)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (8406)
-
ffmpeg add frame to video
26 février 2012, par Emil Avramovguys !
I want to ask you if somebody knows how can I attach a frame to the end of a video with ffmpeg. I have a video output.avi and I want to add frames on every 200ms using ffmpeg. I have the script to download the images, but how to add them to the video one by one.
Thanks in advance.
-
Peer to peer video chat ? [closed]
30 mars 2013, par aladeinI want to program a peer to peer video chat application. can any body suggest an open source real time video codec with low latency. I prefer to work with c#.
ffmpeg is great but I could not figure how to use (stream over
network) it on windows.
thank you in advance. -
Generating synthetic testsrc video counting at 10 fps, first frame is duplicated
19 février 2020, par RotemI am trying to generate synthetic video using FFmpeg.
I want the frame rate to be 10 fps, and I want
testsrc
counter to advance every frame.Problem :
When the output file ismp4
, the first video frame is duplicated 10 times.Question :
Is it a bug in FFmpeg, or a problem in the command line arguments ?
I am using the following command :
ffmpeg -y -r 10 -f lavfi -i testsrc=duration=10:size=192x108:rate=1 -c:v libx264 vid.mp4
- The reason for setting
rate=1
is for the counter to advance on each frame.
The generated source pattern is designed to advance the counter every second. - The reason for setting
-r 10
before the input, is for "remuxing" the video at 10 fps, and ignoring the timestamps of the input.
I found the syntax in the following post : Using ffmpeg to change framerate :
Remux with new framerate
ffmpeg -y -r 24 -i seeing_noaudio.h264 -c copy seeing.mp4
When the output file is
AVI
it’s working correctly (first frame is not duplicated) :ffmpeg -y -r 10 -f lavfi -i testsrc=duration=10:size=192x108:rate=1 -c:v libx264 vid.avi
When generating
AVI
at 1 fps, and Remux tomp4
at 10 fps, there is a different problem :
The first and second frames are duplicated twice, and the last frame is missing.
Here are the commands :ffmpeg -y -f lavfi -i testsrc=duration=10:size=92x54:rate=1 -c:v libx264 -r 1 vid.avi
ffmpeg -y -r 10 -i vid.avi -c:v copy -r 10 vid.mp4
Parsing the
mp4
video toPNG
images :ffmpeg -i vid.mp4 %02d.png
Result :
The first frame is duplicated 10 times.
Parsing the
AVI
video toPNG
images :
Result :
There are 10 frames as expected. - The reason for setting