
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 (67)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (6244)
-
How to handle unstable fps with FFMPEG ?
16 décembre 2022, par BerkayI'm running an object detection pipeline in python using yoloV5. It's basically a project that reads frames from an RTSP camera and runs inference on them. I'm also recording short videos for every detection. My problem is that FPS slightly varies every now on then.
My question is that, how can I stabilize the fps for a given video ? We give the input fps once at the process creation and then it stays the same. However for the rest of the code it fluctuates.
Is there a method that can compensate for small changes ?


I'm using the following snippet to record my videos :


ffmpeg_processes[video_id] = (Popen(['ffmpeg', '-y', '-f', 'image2pipe',
 '-vcodec', 'mjpeg', '-r', str(fps),
 '-i', '-', '-vcodec', 'libx264', '-qscale',
 '5', '-r', str(fps), video_path],



I keep a video_id for each detection and add them frames until the desired duration is reached.
then I add the frames in the following way :


for vid_id, value in ffmpeg_processes.items():
 process, num_of_frames, fps = value
 if num_of_frames < DETECTION_VIDEO_LENGTH * fps:
 frame_to_save.save(process.stdin, 'JPEG')
 ffmpeg_processes[vid_id] = (process, num_of_frames + 1, fps)



Although the duration is exactly what I wanted ,let's say 10 secs, the video recorded actually is 12 seconds in real time. I think this is due to the slight variations of the rest of the pipeline (1-2 fps changes).


-
avcodec/pnm_parser : Use memmove() to handle "overread"
1er août 2019, par Michael Niedermayeravcodec/pnm_parser : Use memmove() to handle "overread"
This is significantly faster
Fixes : Timeout (1sec after this and the previous commit)
Fixes : 15558/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PPM_fuzzer-5705273643106304Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
build : handle library dependencies in configure
1er mai 2014, par Janne Grunaubuild : handle library dependencies in configure
Instead of setting FFLIBS in each library Makefile configure
exports FFLIBS-$library in config.mak.