
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (108)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (11748)
-
Is seeking to specific frames of an MJPEG video faster than doing the same for an h.264 file ?
9 février 2018, par David ParksI am recording video and will need to seek to a specific frame in the video quickly and randomly.
I can record the video in MJPEG or h.264 compression standards.
I understand that MJPEG produces individual jpegs and produce larger file sizes than h.264, and h.264 compresses across multiple frames of video.
Does this difference mean that I will get faster seek times when
seeking to a random location in the file using ffmpeg or gstreamer
programmatically ?Will the MJPEG allow the frame-seek operation to reduce the IO requirements when reading just 1 frame from a video file ?
-
ffmpeg video length is 0 when concatenating pictures
10 novembre 2019, par iftach freundI’m trying to concatenate individual frames, but the video length is 0 and all frames seemingly play at once. Iv’e tried increasing the video length in ffmpeg and changing the frame rate.
os.system('ffmpeg -f concat -i List_tb.txt -c copy output.mp4')
os.system("ffmpeg -i output.mp4 -filter:v fps=fps=120 output_temp.mp4")
os.system("ffmpeg -i output_temp.mp4 -filter:v setpts=8.0*PTS final.mp4")also the frame rate is the amount of frames
-
MP4 - get current subtitle text
20 février 2019, par murrdpirateI’m trying to find a way to grab the current subtitle in an MP4 file. I see that
ffmpeg
can extract all subtitles into an .srt file, but it would be useful for me to just grab the current subtitle based on the current timestamp of a video being played. Especially useful if it can be done with python. This would be akin toopencv
andmoviepy
, where I can extract the current frame as an image based on the current timestamp of the video.I see a lot of libraries that work with subtitle .srt files (e.g. pysrt) but none that access individual subtitles from a playng mp4 file.