
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 (28)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5515)
-
hls : skip to next segment if the current is unavailable
16 avril 2015, par wm4hls : skip to next segment if the current is unavailable
Apparently, some live streams can delete segments too early, maybe
because the client is too far behind. In this case, it’s better to skip
the segment, instead of returning EOF. (Yes, the HLS demuxer actually
returns AVERROR_EOF if opening the segment returns a 404 HTTP error.)Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
How to decode RTSP h264 stream from IP camera using C# and EMGUCV ?
9 janvier 2020, par xor31fourI am trying to access a H.264 stream on an IP camera within my LAN via EmguCV Video Capture. There is an RTSP URL containing the h.264 stream and an HTTP URL that transmits MJPEG.
The goal is to perform perform some EmguCV video processing operations on a live stream in as close to real-time as possible.
I have a bandwidth limitation of 10Mbps.
The problem is that Emgu.CV is unable to open the rtsp(h264) stream but perfectly capable of opening the http(mjpeg) stream..
I can’t use the mjpeg stream as it consumes too much bandwidth and I drastically lose picture quality and fps.
I need to access the h.264 stream in order to meet my bandwidth requirements
Here is the code that I use to check whether the capture has been created :
string MJPEG_URL = "http://192.168.0.11:35271/image1"; //returns true
string RTSP_URL = "rtsp://192.168.0.11/stream1.sdp"; //returns false
_cam1 = new VideoCapture(RTSP_URL, VideoCapture.API.Any);
var flag = _cam1.IsOpened;
Console.WriteLine(flag);RTSP_URL returns false. But when I enter the exact same URL in VLC Player, or if I use VLCSharp library to access the stream it works.
Any suggestions ?
-
FFmpeg and h264_qsv
16 juin 2015, par Dmitry VasilyevI use Intel Quick Sync encoder inside FFmpeg for h264 RTSP streaming.
find_hwaccel
method from utilc.c is used for filling hwaccel structure.libx264
encoder is working withAV_PIX_FMT_RGB24
orAV_PIX_FMT_NV12
formats. Buth264_qsv
requiresAV_PIX_FMT_QSV
.Method
vpicture_get_size(AV_PIX_FMT_NV12, width, height)
returns correct size. But methodvpicture_get_size(AV_PIX_FMT_QSV, width, height)
returns -22
In addition, methodavcodec_encode_video2
crashes when context is filled withAV_PIX_FMT_QSV
format.What is the reason of such behavior ?