
Recherche avancée
Autres articles (108)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (12299)
-
Multiple audio playing at the same time
8 juin 2021, par WETRAKSI got error in that line that says audio is already playing


voice.play(discord.FFmpegPCMAudio(f"song_{guild_key}.mp3"), after=lambda e: check_queues())



How do i fix this(i want it to play multiple mp3 files at the same time on diffrent guilds(not multiple at the same time in one guild)


-
FFMPEG H.264 to JPEG for real time video
18 juillet 2017, par Joe QuinnAny help appreciated.
We are trans-coding H.264 streams into Jpgs which are sending across a web socket to the browser. The reason we are looking to do this is so we can deliver real time video to a browser natively. No need for plugins in a browser agnostic way. If there is a better way to do this then it would be great to know more. The Videos source are H.264 though and we cant change that.
As we lower the FPS we are seeing a greater lag in the camera video feed. e.g at 1 FPS we see the video in the browser is 8 seconds behind. at 15 FPS the video is about 1 second behind. So even though at 1 FPS it updates every second the frame is 8 seconds behind.
We think this is because FFMPEG with the lower frame rate has to wait longer for an I Frame and wont send a Jpeg to the web socket until it has a complete one. We would rather it sends a the Jpeg without having to wait till the IFrame arrives, we would rather see a partial image that gradually gets filled in on the browser. We cannot tolerate a lag of greater than 0.8 seconds in the browser. When the cameras are set to send MJPEG we see 0.250 seconds lag. With H.264 we see 1.25 seconds and we need to get that down to 0.8 seconds. So we really are looking to fine tune H.264 to shave off some time. That’s why when our first approach to lower the FPS made things worse we were surprised so wondering what else needs to be fine tuned in step with the FPS to get a good result.
Is there any option to FFMPEG that tells it to send Jpegs as soon as the first piece of data arrives ? OR maybe we should look at other tuning avenues ?
Here are the FFMPEG parameters :
ffmpegbuffer_size 1024000
r 15
i rtsp ://10.140.150.92/02441987-0826-4dc2-b9bd-62efdc0dd951/02441987-0826-4dc2-b9bd-62efdc0dd951_vs1 ?token=02441987-0826-4dc2-b9bd-62efdc0dd951^LVEAMOKTD^100^40^26^1500482113^a97effd2a6f85c4a0b5e93953b27c8e1eb40ca77&username=USER1
f image2
multiple_requests 1
icy 0
chunked_post 0
q:v 31
vsync 1
r 15
vf scale=640 :-1
http://127.0.0.1:58014/video/cameraTag_deviceId_22cameraUid_-1scale_640 :-1cameraOrigin_requestedStreams_videostream1/frame-%03d.jpegMany Thanks,
Joe. -
Time-weighting frames of an animation using FFMPEG [duplicate]
12 mars 2020, par Rohan S ByrneI’m using ’ffmpeg’ to make an mp4 out of hundreds of individual frames, which are timeslices from an experiment I’ve run. My problem is that the time sampling is not regular. I would like to somehow ’weight’ the frames according to their time index so that the framerate is fast when the sampling rate was fast and slow when the sampling rate was slow.
I know how to do this sort of operation when taking, for instance, a time average using numpy arrays. I have no idea how to do it with ffmpeg.
Any tips ?