Recherche avancée

Médias (91)

Autres articles (63)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11248)

  • lavfi/telecine : show time base change too

    25 avril 2013, par Paul B Mahol
    lavfi/telecine : show time base change too
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/vf_telecine.c
  • Not able to show RTSP stream with Angular

    15 mai 2020, par Q.Rey

    i'm working on a web application with angular where i need to show an rtsp stream inside my window.&#xA;I'm using JSMpeg player related to this topic : Not able to Show live camera RTSP streaming with Angular.

    &#xA;&#xA;

    For my websocket i used the node websocket library and i runned it like this in my cmd : node websocket-relay.js supersecret 8081 8082

    &#xA;&#xA;

    It detect each connection i make on it.

    &#xA;&#xA;

    Then for the conversion part i used FFMPEG where I convert a h264 format to mpegts (mpegvideo1 gave me an error)&#xA;I run it like this :

    &#xA;&#xA;

    ffmpeg -i "rtsp://myurl/media.smp" -vcodec h264 -f mpegts -max_muxing_queue_size 9999 -b 800k -r 30 http://localhost:8081/supersecret/640/480/

    &#xA;&#xA;

    For the angular part I have this :

    &#xA;&#xA;

    @ViewChild(&#x27;streaming&#x27;, {static: true}) streamingcanvas: ElementRef; &#xA;&#xA;constructor( ... ) { }&#xA;&#xA;ngOnInit() {&#xA;    ....&#xA;    let player = new JSMpeg.Player(&#x27;ws://localhost:8081/supersecret&#x27;, {&#xA;        canvas: this.streamingcanvas, autoplay: true, audio: false, loop: true&#xA;      })&#xA;}&#xA;&#xA;

    &#xA;&#xA;

    Result in my window : &#xA;Nothing happen in my canvas even if the websocket detect a connexion

    &#xA;&#xA;

    What did i missed to make it works and get a real video stream ?

    &#xA;&#xA;

    Thanks for help

    &#xA;&#xA;

    EDIT : My first ffmpeg command was wrong, only the audio was sent, now i got this :

    &#xA;&#xA;

    ffmpeg -i "rtsp://myurl/media.smp" -vcodec h264 -f mpegts -codec:v mpeg1video -s 640x360 -b: 700k -r 25 -bf 0 -codec:a mp2 -ar 44100 -ac 1 -b:a 64k -max_muxing_queue_size 9999 http://localhost:8081/supersecret/640/360/&#xA;

    &#xA;&#xA;

    It still doesnt work but the canvas is not black anymore

    &#xA;

  • avformat/dump : Show coded dimensions again

    5 juin 2016, par Michael Niedermayer
    avformat/dump : Show coded dimensions again
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dump.c