Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10475)

  • How to get the support for SRT (Secure Reliable Transport) in React Native (for both iOS & Android) ?

    18 mars 2021, par Sourav Dey

    I tried many ways to get the support for SRT (Secure Reliable Transport) streaming in React Native but none of them worked. There were very few resources over the Internet and none seems to be working.
I tried using ffmpeg library but they are not providing the support for SRT as of now.

    


    The following error was thrown when a valid SRT link was passed to the below code :

    


    Code :

    


    useEffect(() => {&#xA;    RNFFmpeg.execute(&#xA;      &#x27;-i "srt://:<port>?streamid=live.sls.com/live/test2" -vcodec copy -acodec copy -strict -2 -y -f mpegts /storage/emulated/0/Download/srt_test_0.ts&#x27;,&#xA;    ).then(result => console.log(`>> FFmpeg process exited with rc=${result}.`));&#xA;&#xA;    return () => {&#xA;      console.log(&#x27;cancelling all executions&#x27;);&#xA;      RNFFmpeg.cancel();&#xA;    };&#xA;  }, []);&#xA;</port>

    &#xA;

    Output :

    &#xA;

    srt://:<port>?streamid=live.sls.com/live/test2: Protocol not found&#xA;index.js:115 Did you mean file:srt://:<port>?streamid=live.sls.com/live/test2index.js:22 &#xA;>> FFmpeg process exited with rc=1.&#xA;</port></port>

    &#xA;

    Can anyone please help ?

    &#xA;

  • How to stream MacOS desktop screen over local IP using ffmpeg or python or objective-C or Swift ?

    24 novembre 2024, par Akella Niranjan

    I am trying to build a service/application/script on MacBook that can help me share my desktop screen [Mirror my screen] over a local IP address.

    &#xA;

    Or I want to display it on a webpage using flask framework using python.

    &#xA;

    I just wish to look at my desktop screen along with the mouse movements on a web-browser, just like a Remote Desktop.

    &#xA;

    I did try the following command, but when I try to open my browser and go to the IP address it just shows a blank screen

    &#xA;

    sudo ffmpeg -f avfoundation -framerate 30 -pix_fmt uyvy422 -i "0" -listen 1 -f mp4 -movflags frag_keyframe&#x2B;empty_moov -preset ultrafast -tune zerolatency  "http://localhost:8000"&#xA;

    &#xA;

    Please kindly help !!

    &#xA;

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