
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (31)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)
Sur d’autres sites (4032)
-
Scrape the precise duration of videos from ffmpeg to .srt
6 février 2016, par user5715027So, I have a folder with a lot of videos. What I need is to create subtitles with the names of those videos also minding their size and length to create subtitles in .srt format. And length of videos should be parsed in such format :
00:00:00,000 => hh:mm:ss:milliseconds
So for example I have three videos in the folder :
1) firstvideo.wmv size:5743KB length: 00:05:34,793
2) secondvideo.mp4 size:3215KB length: 00:02:42,653
3) thirdvideo.avi size:3950KB length: 00:01:55,152I need them to be sorted by size in .srt file with the precise timing one after another (also to remove video format in subtitles). Output file should in .srt format and should look like this :
1
00:00:0,000 --> 00:02:42,653
secondvideo
2
00:02:42,653 --> 00:04:37,805
thirdvideo
3
00:04:37,805 --> 00:10:12,598
firstvideo
(Important => After every time an action is completed there should be an empty line like in the example)I was given an advice to scrape the duration from
ffmpeg -i "mediafile.ext" 2>&1 | find "Duration:"
. That will give me centisecond precision.
Thanks For Your Attention ! Please, Help ! :) -
Revision 106670 : Coquille dans r106474 : Corrige la disparition des vérifications dans ...
9 octobre 2017, par marcimat@… — LogCoquille dans r106474 : Corrige la disparition des vérifications dans champs extras, entre autres choses. https://contrib.spip.net/Champs-Extras-3#forum493661
-
Correct recording time of the first frame of a video
27 juillet 2017, par Vítor CézarHow do I get the correct time of the first frame recorded on a video ? I executed the command
ffprobe -v error -show_streams [file_path]
and got these values of timecode and creation time for the first stream :
TAG:creation_time=2017-07-26T16:48:10.000000Z
TAG:language=eng
TAG:handler_name= GoPro AVC
TAG:encoder=GoPro AVC encoder
TAG:timecode=17:21:54:28The problem is that the video started being recorded on 16:48:11:504 and neither timecode nor creation time shows this value. If possible I need the precision on milliseconds.