
Recherche avancée
Autres articles (46)
-
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" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (6992)
-
Which video codecs support file level concatenation and have good resolution [migrated]
6 mai 2014, par Lau LlobetI need to concatenate two videos in the fastest possible way.
As seen in this question , ffmpeg concat protocol is extremely fast but only works with
formats that support file level concatenation (MPEG-1, MPEG-2
PS, DV).Is there any more modern codec that would allow concat protocol without re encoding ?
-
streaming a video from the raspberry using ffmpeg
23 juillet 2018, par Omar Benamiar MessariI’m trying to stream video using ffmpeg, I can see that I’m sending my video flow from my Raspberry server, but I don’t receive anything the protocol I’m using is The UDP protocol.
Client codeffmpeg -i out.mp4 -f mpegts udp://224.2.2.2:8888
I used wireshark to see if I can receive any packet but I didn’t receive anything
server code
ffplay -i udp://192.168.1.47:1234
-
avformat/http,tls : honor http_proxy command line variable for HTTPS
23 août 2020, par Moritz Barsnickavformat/http,tls : honor http_proxy command line variable for HTTPS
Add the "http_proxy" option and its handling to the "tls" protocol,
pass the option from the "https" protocol.The "https" protocol already defines the "http_proxy" command line
option, like the "http" protocol does. The "http" protocol properly
honors that command line option in addition to the environment
variable. The "https" protocol doesn't, because the proxy is
evaluated in the underlying "tls" protocol, which doesn't have this
option, and thus only handles the environment variable, which it
has access to.Fixes #7223.
Signed-off-by : Moritz Barsnick <barsnick@gmx.net>
Signed-off-by : Marton Balint <cus@passwd.hu>