
Recherche avancée
Autres articles (111)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (10514)
-
How to effectively turn high resolution images into a video with ffmpeg ?
5 septembre 2022, par Sprout Coder- 

- I have 24 frames (
frame-%d.png
) - I want to turn them into a video that will be 1 second long
- That means that each frame should play for 1/24 seconds








I'm trying to figure out the correct settings in order to achieve that :


await new Promise((resolve) => {
 ffmpeg()
 .on('end', () => {
 setTimeout(() => {
 console.log('done')
 resolve()
 }, 100)
 })
 .on('error', (err) => {
 throw new Error(err)
 })
 .input('/my-huge-frames/frame-%d.png')
 .inputFPS(1/24)
 .output('/my-huge-video.mp4')
 .outputFPS(24)
 .noAudio()
 .run()



- 

- Are my
inputFPS(1/24)
&outputFPS(24)
correct ? - Each
frame-%d.png
is huge : 32400PX x 32400PX ( 720Mb). Willffmpeg
be able to generate such a video, and if so, will the video be playable ? If not, what is the maximum resolution eachframe-%d.png
should have instead ? - Since the process will be quite heavy, I believe using the command line could be more appropriate. In that case, what is the equivalent of the above Js code in the command line (as in
ffmpeg -framerate etc...
) ?








- I have 24 frames (
-
ffmpeg : How do I set the framerate and keep the default image resolution ?
8 septembre 2022, par Sprout CoderI have 23 frames inside a folder (each frame has the same resolution) :


frame-1.png
frame-2.png
......
frame-23.png



I want to create a 1 second video that will have the same resolution.
Each frame should therefore last for
1/23
seconds.

I tried to following command :


ffmpeg -r 23 -i "frame-%d.png" -c:v libx265 -r 23 out.mp4



But my mac crashed.


The resolution of each image is really big (15000x15000) but not big enough for ffmpeg to throw the usual "value is too big" (>INT_MAX) error..


I think it crashes because my command is not correct.


Could you please confirm what the correct command should be to achieve what I want ?


Also, will the frames be ordered correctly according to this command ?


Thank you in advance for your help


-
change resolution of video using ffmpeg
28 octobre 2022, par davidI have a folder that contains videos with a resolution of 1080 and different bitrates. I am trying to change their resolution to 480 and using the following code :


subprocess.call(['ffmpeg.exe','-i', pname1,'-vf', 'scale=-1:480,setsar=1:1','-c:v','libx264','-pix_fmt' ,'yuv420p','-b:v', str(cnt)+'K', '-bufsize', str(cnt)+'K' ,'-minrate', str(cnt)+'K','-maxrate', str(cnt)+'K', '-x264opts','keyint=60:min-keyint=60','-preset', 'veryfast', '-profile:v', 'high', '-f', 'hls', '-hls_time', '2', '-hls_list_size','0', pname2])



but it produces noting in the related filename (
pname2
). it also shows no error.
what is the problem and how can I change the resolution to 480 ?