
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (39)
-
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 (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7508)
-
Realtime http ogg stream with ffmpeg latency
4 septembre 2013, par MastErAldoI'm using the Kinect as an infrared camera and through a named pipe i send each captured frame to FFMPEG which encodes them in an ogg/theora stream that is sent to an http server.
The server than broadcasts the video to every connected user. The users use the Cortado applet to play the video.The video plays fine, but the latency keeps on increasing continuously. So if at the beginning the latency is about 100ms, in a minute it reaches up to 10 seconds.
However the playback is smooth, the bandwidth is enough and the encoding machine and the server CPU is not overloaded, so I don't understand what can make the latency increase.
This is the ffmpeg command line that we use :
ffmpeg.exe -f segment -f rawvideo -pix_fmt rgb565 -s 640x480 -i \\.\pipe\CAH_STREAM_PIPE -fflags nobuffer -r 60 -b:v 128k -bufsize 1024k -s 240x160 -codec:v libtheora -qscale:v 1 -f ogg http://localhost/video_stream.ogg
Am I missing some parameters or setting some of them to wrong values ? Or the problem is elsewhere ?
BTW : I'm not sure about using nobuffer and bufsize at the same time
Thanks
-
How to HTTP live stream from a continuous sequence of images [on hold]
26 avril 2017, par alezI can get a continuous sequences of images from a camera. The camera is on a Windows machine and I grab the images via a C# SDK.
I need to generate a video stream from these images, delivered via an http server.
I can generate an udp video stream in mpegts format using ffmpeg.
The web server is nginx on a linux machine, how can I use this stream to deliver the video on an HTML5 page ? Also with software other than ffmpeg.P.S. I’m using ffmpeg via Process, but I could use a wrapper like FFmpeg.AutoGen.
-
How to http stream video from a frequently updated image
27 avril 2017, par alezHow can I obtain an HTTP video stream from a single image file that is frequently updated (every 50ms) ?
The file is on a Windows 7 machine, I can use C# but I can also send a potential stream to a linux machine.
I would try whith vlc and the fake module, but it seems not more supported. I’ve tried also with a pipe from ffmpeg (also over an udp localhost stream) but it doesn’t work.