
Recherche avancée
Autres articles (79)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (4360)
-
How to force ffmpeg to use all the images in a directory ?
7 septembre 2016, par LearnaholicI have a directory of images, (*.png)s, and I am trying to make a movie out of them using ffmpeg.
The images are named in multiple of 50, so I have :
images_0000.png
, then,images_0050.png
, thenimages_0100.png
, thenimages_0150.png
, etc, all the way toimages_4950.png
, and so I have 100 images in total.I use the following command to make my movie :
ffmpeg -r 10 -pattern_type glob -i '*.png' -c:v libx264 movie.mp4
This works fine to make the movie, however when I play it, does not look like every image is being used. That is, if I step through frame by frame, I see that some images are not being displayed, and it looks like they were skipped. (I know because every image has it’s name written on it).
So, how do I force ffmpeg to use every image in the directory, such that every step forward in the movie, will show the corresponding image ?
Thanks.
EDIT : Here is the complete screen dump of the command :
-
Fastest canvas to ffmpeg method
20 novembre 2020, par KajunaI have an Electron JS app where I draw to a canvas and then send each frame to ffmpeg to create a video. It works well, but performance is not great. This is how I currently do it :


- 

- I have an image stream (new PassThrough) that is piped to my ffmpeg process
- When a frame is ready, I convert it to a blob with canvas.toBlob()
- I convert the blob to arrayBuffer
- And get a buffer with Buffer.from()
- I write the buffer to the image stream with .write()












I have measured the time each step takes and the bottleneck is, by far, canvas.toBlob


Is there a way to do this entire process or the toBlob step faster ? I have looked into HTMLCanvasElement.captureStream() but I don't think I can pipe that to ffmpeg.


I'm using P5js for drawing. It does not seem like there is a way to draw (more) directly to a blob or buffer. Even p5.Graphics seems to draw to a hidden canvas https://p5js.org/reference/#/p5.Graphics


Thanks


-
Revision 71b43b0ff0 : Clean ups of the subpel search functions Removes some unused code and speed fea
7 août 2013, par Deb MukherjeeChanged Paths :
Modify /vp9/encoder/vp9_mbgraph.c
Modify /vp9/encoder/vp9_mcomp.c
Modify /vp9/encoder/vp9_mcomp.h
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Modify /vp9/encoder/vp9_rdopt.c
Modify /vp9/encoder/vp9_temporal_filter.c
Clean ups of the subpel search functionsRemoves some unused code and speed features, and organizes the
interfaces for fractional mv step functions for use in new speed
features to come.In the process a new speed feature - number of iterations per
step during the subpel search - is exposed.No change when this parameter is set as the original value of 3.
Results :
subpel_iters_per_step = 3 : baseline
subpel_iters_per_step = 2 : psnr -0.067%, 1% speedup
subpel_iters_per_step = 1 : psnr -0.331%, 3-4% speedupChange-Id : I2eba8a21f6461be8caf56af04a5337257a5693a8