Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (62)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10624)

  • How to get live stream media from URI with RTMPS protocal

    19 mai 2021, par user974335

    My app want to playback video from an URI live stream with RTMPS protocal. I used FFmpegInteropX (https://github.com/ffmpeginteropx/FFmpegInteropX) to get media source.

    


    var uri = "rtmps ://xx.xx.xx.xx:443/live/dbjl" ;
FFmpegInteropMSS MediaSource = FFmpegInteropMSS.CreateFFmpegInteropMSSFromUri(uri, true, true, new PropertySet()) ;

    


    But MediaSource return null.
How can I get it without null object.
Important : Must use RTMPS protocal, with RTMP then can get ok

    


  • matroskadec : Add support for parsing live header files

    1er avril 2015, par Vignesh Venkatasubramanian
    matroskadec : Add support for parsing live header files
    

    This patch adds support for parsing live files (produced by
    - f webm_chunk) which contains only the headers but no packets. This
    is only used when using -f webm_dash_manifest. There will be a
    follow up patch which adds live support to WebM DASH Manifest
    muxer.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c
  • Running Live streaming of local user using ffmpeg at Web plateform

    23 décembre 2019, par Sneha Makwana

    I am using below command to stream my live desktop screen.

    ffmpeg -f x11grab -r 1 -loglevel panic -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -i $DISPLAY -qscale 0 -f mpegts udp://192.168.3.151:1111

    udp ://192.168.3.151:1111 - this is my streaming URL

    I can see live streaming in the parole media player (in Linux platform), but I can’t see this in a cross-network (i.e from windows PC - in the same network)

    Is there any web platform so I can see my streaming from anywhere (either windows or linux) just using unique streaming URL or do I need to change my streaming command or method ?

    Any help is much appreciated