
Recherche avancée
Autres articles (99)
-
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. -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (12957)
-
Speed of moving text drawtext filter - FFMPEG
8 mai 2016, par BOBI’m using this command to move text from one place to another using ffmpeg
ffmpeg -i VideoInput.mp4 \
-vf "drawtext=enable='between(t,12,14)':fontfile=myfont.otf:text='Test test': \
x='x1+(x2-x1)*(t-t1)/(t2-t1)':y='y1+(y2-y1)*(t-t1)/(t2-t1)':fontsize=65" \
-acodec copy outputVideo.mp4Now I need to control the speed of moving the text. I want to speed it up.
How do I control the speed ?Any suggestions ?
Thank you
-
How to increase image export/extract speed when using ffmpeg ?
7 février 2020, par Los Pollos HermanosI’m extracting all frames from mp4 video (video fps : 25) with fps
-r 25
param, using ffmpeg.Here is command that I used :
ffmpeg -i input.mp4 -r 25 frame_%%02d.bmp
. It works.In start of extracting proccess ffmpeg have
speed=~4x
and after 200-300 frame speed slow down to~0.3x
. But CPU using is only 3% max, memory also ok. Output Metadata :Encoder : Lavf58.12.100
Stream #0:0(und): Video: bmp, bgr24, 1920x1080, q=2-31, 200 kb/s, 25 fps, 25
tbn, 25 tbc (default)Question : How can extract faster ?
I’ve tried with this parameters, but speed not changed :
-threads 4
threads count has changed but speed not,-preset
withveryfast
andultrafast
also nothing.
-
How to use -vf format="gray" in ffmpeg python
22 août 2022, par user19551045I am trying to use the -vf format="gray" in ffmpeg-python and I can't seem to get the syntax right. From what I have seen, ffmpeg-python has a set of filter_name options you can use, and then there is also the option to use .filter_() to just put in the ffmpeg commands directly in.


I have tried using both and seem to get the same error, where ffmpeg-python wants me to declare a filter_name and from what I am seeing in the documentation, format=gray doesn't fall under any of the filter_name options.


If I take this approach, it works :


(
 ffmpeg.input(img_seq_template, framerate=framerate, **input_options)
 .filter("format", "gray")
 .output(filename=output_path, **output_options)
 .run(overwrite_output=True)
 )



However, I want to also use a dictionary in the filter(), which then requires me to put in a filter_name. The goal would be to have something like below working :


filter_options = {'format' : 'gray'}

(
 ffmpeg.input(img_seq_template, framerate=framerate, **input_options)
 .filter(filter_name = "some_filter_name", **filter_options)
 .output(filename=output_path, **output_options)
 .run(overwrite_output=True)
 )



Any ideas on what I could put into the filter_name to get this running would be amazing ! All suggestions welcome, thanks so much !