
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (104)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (14083)
-
How can i use ffmpeg.exe command line to create a video file from number of images on hard disk ?
22 juillet 2016, par TheLost LostitIn command prompt window i typed in the directory of the images :
D :\SavedScreenshots>ffmpeg.exe -r 3 -i Imgp%04d.bmp -s 720x480 test.avi
The images file are Bmp type.
The first image file name is : screenshot0.bmp
The last one is : screenshot168.bmpExample of one image details : Width 1920 Height 1080 Bit Depth 32
The ffmpeg.exe file is in the same directory of the images.
In the prompt windows console ouput i see :
[image2 @ 00000000025624a0] Could find no file with path ’Imgp%04d.bmp’ and index in the range 0-4
Imgp%04d.bmp : No such file or directoryThen how should i do it the command line ?
I found the problem and now it’s working but it’s very strange.
In c# i create the screenshots of my desktop this images on the hard disk i want to create video file from.
In c# i did in a timer tick event :int count = 0;
private void timer1_Tick(object sender, EventArgs e)
{
Bitmap bmp = new Bitmap(sc.CaptureScreen());
bmp.Save(@"D:\SavedScreenshots\screenshot" + count + ".bmp");
bmp.Dispose();
count ++;
}This saved the images on the hard disk all of them in sizes between 129-132kb each file. I could edit/open the images and see them no problems but ffmpeg could not handle them gave me this error.
Now i changed the code in the c# to this :
bmp.Save(@"D:\SavedScreenshots\screenshot" + count + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
I added the part : System.Drawing.Imaging.ImageFormat.Bmp
Now each image file it’s size is about 7MB !!!!
And now ffmpeg can handle it with the command line :ffmpeg.exe -framerate 3 -i screenshot%d.bmp -vf scale=ntsc,setdar=16/9 test.avi
I wonder why when the images size was 130KB ffmpeg couldn not handle it didn’t find the files or directory and when they are 7MB it does find and create the video file ?
Even now when i type as command line :
ffmpeg -i screenshot%03.bmp -s 720x480 test.avi
I’m getting erorr not such file or directory
Only when i type :
ffmpeg -i screenshot%d.bmp -s 720x480 test.avi
It’s working.
Why when doing screenshot%3.bmp it’s not working but screenshot%d.bmp does working ?
Also doing screenshot0.bmp worked. Only screenshot%3.bmp not working.
And in all examples i saw i had to make screenshot%3 or %2 but they give me the error no such directory file. -
Revision 066ed601a5 : Merge "Don't waste time partitioning skip superblocks."
9 mars 2015, par Alex ConverseMerge "Don’t waste time partitioning skip superblocks."
-
Kaleidoscope-like video, what happened ? [closed]
11 avril 2012, par ghostI have used dolphin-player (http://code.google.com/p/dolphin-player/), it is based on ffplay with libsdl, all movies are in 3 pictures like these
.
can anyone know what the problem is, and how to repair it in code ?
(Source code here)