
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (36)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (6250)
-
Dynamic way to add length to an html5 video
6 septembre 2013, par Eric PaulsenI'm looking for a way to update the video length on an HTML5 video in the client side using Javascript.
Example : I have a video clip loaded on the page that is 30 seconds long and I want to update it on the fly to be 45 seconds long.
I had a look at the duration property of the HTMLMediaElement, but quickly discovered that the property was read only (source : https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement). I also stumbled upon this blog post, but my ideal solution would be to have one continuous clip. I could accomplish this on the server side using a tool like FFMPEG, but I'd rather not add an increase in load time for our users.
Any suggestions ?
-
Create RTMP stream from website via Linux command line
13 octobre 2020, par Chris P. BaconI have a webpage with video and audio that I would like to relay through an RTMP stream. This would preferably happen via command line on a Linux machine.


I know FFMPEG can be used to create RTMP streams and I know it can be used to capture the screen, but I don't know if it has all the features I want.


Is it even possible to capture a webpage with audio from the command line ?
If so, how should I output this to RTMP ?


Thanks !


-
Stream mjpeg with ffserver
28 janvier 2016, par user3115426I am trying to feed my ffserver with single .jpeg file by mjpg and play it on VLC player. I am sending my image file by command :
ffmpeg -r 0.33 -i test.jpg http://localhost:8090/feed1.ffm
My ffserver configuration looks like this :
Port 8090
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 10
MaxBandwidth 100000
CustomLog -
<feed>
File /tmp/feed1.ffm
FileMaxSize 10M
ACL allow 127.0.0.1
</feed>
<stream>
Feed feed1.ffm
Format mjpeg
VideoSize 640x480
VideoFrameRate 10
VideoBitRate 2000
VideoQMin 1
VideoQMax 10
Noaudio
</stream>When I open stream in VLC it disappears quickly, but when I turn on ’loop’ option in VLC I can see that there is a frame. My goal is to have continuously stream without any loop options. What I am doing wrong ? Do I have to change framerate or something else ?