Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (91)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7443)

  • ffplay : always show stats at all log levels if requested by user

    3 avril 2020, par Gyan Doshi
    ffplay : always show stats at all log levels if requested by user
    

    Since 3b491c5a500, stats would be hidden if loglevel was lower than
    info, even if -stats was set.

    Fixes #6962

    • [DH] doc/ffplay.texi
    • [DH] fftools/ffplay.c
  • avcodec/h264_ps : Show VUI and SPS overread messages just once per frame thread

    16 janvier 2020, par Michael Niedermayer
    avcodec/h264_ps : Show VUI and SPS overread messages just once per frame thread
    

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

    • [DH] libavcodec/h264_ps.c
    • [DH] libavcodec/h264_ps.h
  • 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;