Recherche avancée

Médias (1)

Mot : - Tags -/theme

Autres articles (8)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (1256)

  • mobileFlash.check() for handling HTC Android + Flash 10.1, where flash does not load until on-screen (ie., in view.) If off-screen, positioned at left/top 0px in order to load (including scroll/resize if needed), then events released and movie moved off-screen. If in DOM already, flashLoadTimeout is set to 0 to allow infinite wait (eg., will not timeout and will load when scrolled into view.)

    14 août 2010, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2.js mobileFlash.check() for handling HTC Android + Flash 10.1, where flash does not load until on-screen (ie., in view.) If off-screen, positioned at left/top 0px in order to load (including (...)

  • Record Screen Specific View using MediaRecorder

    29 janvier 2019, par Ahsan Saeed

    I want to record my screen video in specific View link only want to record the action performing inside LinearLayout. Right now, MediaRecorder is recording whole screen, how to record specific part of screen ?

  • I want to be able to view the CCTV screen on the web

    12 mars 2019, par 윤성호

    I want to be able to view the CCTV screen on the web.

    I have been working on a project that allows the ip camera to be viewed on the web.
    Then I was asked to make Coaxial camera visible on the web.
    So I decided to use DVR.
    First, I connected the DVR to the router.
    Then the input of the coaxial camera is received by the DVR and the DVR transmits the information through the router.
    Through this process, i confirmed that rtsp works normally.
    But it didn’t work on the web.

    I am currently using the nginx web server.
    and use ffmpeg to send rtsp information to rtmp on my nginx web server.
    The web server will then transform it into an hls (index.m3u8) file.
    I think something went wrong during this process.

    Nginx RTMP Config

    # RTMP Config
    rtmp {
       server {
           listen 1935; # Listen on standard RTMP port
           chunk_size 4000;
           application live{
               live on;
               deny play all;
               push rtmp://localhost/play;
               on_publish http://localhost:3001/api/on-live-auth;
               on_publish_done http://localhost:3001/api/on-live-done;
           }
           application play {
               live on;
               # Turn on HLS
               hls on;
               hls_nested on;
               hls_fragment_naming system;
               hls_path /home/banana/nginx/live;
               hls_fragment 3;
               hls_playlist_length 60;

               # disable consuming the stream from nginx as rtmp
               #deny play all;
           }
       }
    }
    # End RTMP Config

    FFMPEG command

    ffmpeg -i rtsp://<cameraip> -c:v copy -rtsp_transport tcp -preset veryfast -c:a copy -fflags +igndts+genpts -f flv rtmp://localhost/live/<cameraid>
    </cameraid></cameraip>

    Test results

    IP Camera RTSP address = admin:qwerty1.@ssnet4.iptime.org:555/trackID=3

    DVR RTSP address = admin:hrd-442s@hwakptz.iptime.org:4524/1

    Run the above rtsp addresses in vlc player respectively

    Success : IP Camera RTSP address , DVR RTSP address

    IP camera HLS address = http://168.131.150.80:4567/live/5c28ae28c6cd0c6c329e1ebc/index.m3u8

    DVR HLS address = http://168.131.150.80:4567/live/5c8746c9d7d74a600edf2460/index.m3u8

    Run the above rtsp addresses in vlc player respectively

    Sucess : IP Camera HLS address

    Fail : DVR HLS address

    This is the same result on the react player.

    const streamUrl = `http://168.131.150.80:4567/live/<cameraid>/index.m3u8`;
    <reactplayer width="{&quot;100%&quot;}" height="{&quot;100%&quot;}" url="{streamUrl}" playing="{true}" controls="{false}" muted="{true}"></reactplayer>
    </cameraid>

    Question

    1. Is there a way to see rtsp directly on the web ?
    2. What’s the problem and what’s the other way ?