
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (69)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" (...)
Sur d’autres sites (8571)
-
Matlab - Capture Video Streams (part 2)
25 novembre 2014, par Uri MerhavThis is a follow up on this question. I’m trying to capture a live stream from an ip address (e.g. rtsp ://10.0.0.0:554/live.sdp). The only solution I’ve seen so far is to use mexopencv to call opencv’s streaming functionality from matlab. This has a very significant drawback, in that you need to get mexopencv to actually work on a mac, which is quite challenging.
So, I was thinking about using the following approach :
- Use ffmpeg to stream the rtsp stream into a named pipe
- Read the named pipe from Matlab, just as if it was an ordinary video file (am I correct that this is how one uses a named pipe ? I’ve never used this kind of solution before)
If this solution is inefficient, not going to work, or if there’s a better alternative — I’d love to hear about it !
-
avcodec/h261dec : Make VLC smaller
29 décembre 2020, par Andreas Rheinhardtavcodec/h261dec : Make VLC smaller
The VLC for the macroblock address increment uses nine bits ;
yet there is no code with this length : All codes are either shorter or
longer. So one can make the table smaller without changing the amount of
codes that need more than one round of parsing.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Programmatically specify rtmp s to be pulled from
16 juillet 2014, par StanislavI am sorry in advance if question might look a little bit silly, but I am very new to the current topic so hope you understand.
Our current video streaming is performed with red5, and the client that receives the video is the flash client.
My goal is to get the stream address of my red5 stream and programmatically send notification to nginx-rtmp to pull it.
So let’s say I have the following nginx-rtmp configuration :
application big {
live on;
exec_pull /home/stan/bin/ffmpeg -i rtmp://142.204.133.103/$app/${name} -vcodec flv -an -f flv rtmp://localhost:1937/anotherapp/${name};
}
application anotherapp {
live on;
}Now I want notify nginx-rtmp and say : "Hey, here is rtmp ://142.204.133.103/red5app/livestream stream, can you please pull it, transcode and retransmit to "anotherapp" ?
I can do it either from ActionScript3 or Java code, I just need a small example of how it’s usually done, because I got confused :(
Thank you, guys.