Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (47)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5619)

  • How to decode RTSP h264 stream from IP camera using C# and EMGUCV ?

    9 janvier 2020, par xor31four

    I 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 ?

  • hls : skip to next segment if the current is unavailable

    16 avril 2015, par wm4
    hls : 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>

    • [DH] libavformat/hls.c
  • Get mime type for MediaSource.isTypeSupported

    11 mars 2024, par Guig

    How do I get the Mime type I need to pass to MediaSource.isTypeSupported with ffprobe/ffmpeg ?

    &#xA;&#xA;

    For instance, on my computer, that returns true :

    &#xA;&#xA;

    MediaSource.isTypeSupported(&#x27;video/mp4; codecs="avc1.64000d,mp4a.40.2"&#x27;)&#xA;

    &#xA;&#xA;

    while that doesn't

    &#xA;&#xA;

    MediaSource.isTypeSupported(&#x27;video/mp4&#x27;)&#xA;

    &#xA;&#xA;

    I'm not sure how to get what would correspond to the avc1.64000d,mp4a.40.2 part for a given video. Here is a larger list of what this part may look like.

    &#xA;&#xA;

    ffprobe -show_streams -i video.mp4 returns a number of interesting informations, including

    &#xA;&#xA;

    codec_type=video&#xA;codec_time_base=1/40&#xA;codec_tag_string=avc1&#xA;codec_tag=0x31637661 &#xA;

    &#xA;&#xA;

    and

    &#xA;&#xA;

    codec_type=audio&#xA;codec_time_base=1/48000&#xA;codec_tag_string=mp4a&#xA;codec_tag=0x6134706d&#xA;

    &#xA;&#xA;

    I'm not sure I should go with &#x27;video/mp4; codecs="avc1.0x31637661,mp4a.0x6134706d"&#x27; since this returns false and I don't know if it's because it's not the excepted argument or because the video is indeed not supported.

    &#xA;