
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (50)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (9463)
-
Force ffmpeg to quit when input resolution changes
22 octobre 2022, par rednineI'm using ffmpeg to restream a live feed. Unfortunately occasionally the input resolution changes but ffmpeg continues running. The nginx rtmp server I'm using doesn't cope well with this, and continues the stream with audio, but the video is mostly black or green with some artifacts.


Ideally what I want to happen is for ffmpeg to stop on an input resolution change, as I have a script that detects ffmpeg stopping and will restart it again.


I'm using -c:v copy in my ffmpeg command as unfortunately my machine is not powerful enough to re-encode the live video on the fly to a constant resolution (not without a significant quality reduction at least)


ffmpeg -i "http://mpegts-live-stream" -c:v copy -c:a aac -ac 2 -f flv "rtmp://nginxserver/live/streamname"


-
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


-
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 (