
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (97)
-
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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9675)
-
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


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