
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (103)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (9653)
-
Ffmpeg drawtext duration time [closed]
1er septembre 2012, par Batuhan TopbaşExample : Overlay text 10 seconds into the video or every 20mins one time overlay orr custum time overlay. How to ?
-
Stripping 'actual time of day' from AVI files
22 avril 2014, par wxJunkieI have TB’s of AVI|DV|VOB files. I want to run a script that will enable me to find the real start time + end time AND the navigation (latitude & longitude) that is embedded in the audio of each of the clips that I have and export the list perhaps to a .txt or .doc list. I use a SMPTE reader now that can read the time that is embedded in the video, so there has to be a script that will pull those certain criteria’s out ?
I have ran several codes in the past that has given me :
duration : 00:01:23.83 start : 0.0000000, bitrate 28771 kb/s etc.
I always get ’start : 0.0000000’ for each clip and I need the real start time of each clip.Is this possible ?
-
FFmpeg get a crop without tying it to a specific time period
30 avril 2021, par Дмитрий Варзановcrop = sub.check_output("ffmpeg -i "+file+" -ss 5 -t 30 -vf cropdetect -f null - 2>&1 | awk '/crop/ { print $NF }' | tail -1", shell=True).decode().strip()



In order not to bind to a time interval, it is possible to analyze the frames for the entire time period of the video file.


It would be a solution if this process was performed quickly, instantly. But unfortunately, it can take hours, depending on the duration of the video


Execute the command to get the duration of the video, and then calculate and set the time to get the crop. We'll have to build forests...


I am looking for a solution in which there will be no need to set the time and at the same time the task will take the least amount of time.


Perhaps someone has a solution ?