
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 (95)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (8635)
-
html5 video player with concatenation tracks by time [on hold]
26 août 2017, par JensenI have some videofiles (h264) :
http://localhost/001.mp4
http://localhost/002.mp4
http://localhost/003.mp4
http://localhost/004.mp4
http://localhost/005.mp4
...And some meta-information about its duration and time shift from 00:00:00
I want to develop html5 video player, that has time widget with scale from 00:00:00 to 23:59:59. User can click on time widget and player starting show correct videofile from correct position (not always from start).
Company Hikvision (EzvizCloud) has this videoplayer, but it is not for sale
single html5
<video></video>
tag doesn’t support multiple video files.Should i use multiple
<video></video>
tags or just open websocket and draw picture on canvas ? -
Time interval between frames ffmpeg while creating thumnail
9 février 2017, par rohit phogatI am creating a thumbnail sheet from videos inside a folder with 7 rows and 3 columns. I am using following command
ffmpeg -i "video.mp4" "ss.jpg" -frames 1 -q:v 1 -vf "select=not(mod(n\,40)),scale=466:-1,tile=3x7"
I am not getting desired output. It just create thumnail starting from 00:00:00 and finishes at like 00:01:00
How can i get time interval of 60 seconds between each frame ?
-
ffmpeg real-time encoding. Encode while file uploading by chunks
29 avril 2020, par skatehypeNow the process is :
1) File upload
2) Encode file with ffmpeg when file has been uploaded



Can be done at the same time ?, obviusly yes, but I don't know how.



The file upload process is by 8MB chunks stored in server, then, temporary I have videofile.ext.tmp that is growing up to final uploaded file.



I read about ffmpeg -stream_loop or -loop parameters, but I don't know if the upload process is good for real-time encoding or how to manage it.



Any help will be appreciated.