
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
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
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (57)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8439)
-
Keep ffmpeg listening to new inputs
14 décembre 2018, par Vincent BavaroGood morning, I have a server that generates images and I have to stream them via hls to a client while they’re generated. I need ffmpeg to start working while they start getting transmitted and stop working when no more images are received. I tried feeding them via stdin and via img2pipe to ffmpeg but it actually needs a stopping point to process. I wanna know if ffmpeg can process images slideshow into video pieces WHILE they come in or I need multiple commands (one for each .ts) ?
-
How to resize a picture using ffmpeg's sws_scale() ?
7 novembre 2022, par cyh24I wanna resize a picture by using the ffmpeg's func--->sws_scale().



Is there any one knows how to do it ?



Do you have the source code for this function ?


-
How to stream rawvideo x11grab desktop with zero latency
14 septembre 2017, par J. UnknwoI would like to stream my linux desktop with ffmpeg rawvideo
i use this command on server :sudo ffmpeg -f x11grab -s 1280x720 -i :0.0 -vcodec rawvideo -pix_fmt bgr0 -threads 1 -f mpegts udp ://localhost:1234
its take almost 900Mb/s bandwidth but its over LAN
I dont wanna use codecs cause its create to big latency for playing games.But i cant use ffplay to recognize this stream
ffplay ’udp ://localhost:1234 ?fifo_size=999000&overrun_nonfatal=1’
I got error :
Failed to open file ’udp ://localhost:1234 ?fifo_size=875000&overrun_nonfatal=1’ or configure filtergraphWhen i save to file after second i have large file but i can open it with vlc i cant open udp stream
Edit2 :
sudo ffplay -f rawvideo -pixel_format bgr0 -video_size 1280x720 udp ://localhost:1234 ?fifo_size=999000&overrun_nonfatal=1working but i have green artifacts everywhere