
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (47)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7747)
-
cpu.c : Fix debug Windows w32 build issue
23 février 2017, par Erik de Castro Lopo -
FFMPEG under Windows 7(64) - creating timelaps video
23 janvier 2016, par Me_no_stupitMy goal is to create a video from a bunch of jpg files. I have chosen FFMPEG (Windows 64) to solve this task :
The task
I have more than 4k jpg files in a directory, all following the naming convention
pic000000X.jpg
(wherex
is a number)
i.e.pic_0000001.jpg
,pic_0000002.jpg
,.,pic_0001337.jpg
and so on which I want to create a timelaps video from.(source : FFMPEG FAQ - Creating timelaps videos)
Result
When I run
ffmpeg -i pic%7d.jpg -s:v 1280x720 -c:v libx264 output.mp4
I get theoutput.mp4
file but it is small and contains only few pictures/frames - nine to be precise (running the reverse commandffmpeg -i output.mp4 test%d.jpg
I gettest1.jpg
totest9.jpg
)Observation
It seems to work until
pic_0000009.jpg
and then the pattern does not recognizepic_00000010.jpg
onwards.What am I missing or am I doing wrong to only include nine pictures ?
Thanks for time and effort for giving me some hints.P.S. I tried the
blob
style file pattern but it does not work under windows -
[FFmpeg on Windows] : help me converting a set of .png files to a video file
31 octobre 2016, par Stefano FedeleHi everybody I am on windows 10, I installed FFMpeg and I would like to use it to convert 100 .png image files into a video file.
I am using it via the prompt, which is the Windows console, and I am struggling with the syntax (which probability comes from Linux). I set the folder in which ffmpeg.exe is contained as a windows system path as suggested on many websites and I moved the prompt to the folders in which the image files are contained which is reported here :
cd C:\video\pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain
I would like to convert the image files contained in this folder into a video file, the names of those image files are reported here :
pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 001.png
pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 002.png
...
...
pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 100.png
The number of frames per second whould be 2.
I read on internet that I should have to type something like this
ffmpeg -i image-%03d.png video.webm
But it looks like there are a lot of variables to consider and all the times I try to set them and run FFmpeg I get an error from the prompt.
Is there anyone who could suggest me the proper syntax, please ?