Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (11600)

  • c# - best way stream images to a remote server ?

    29 avril 2014, par shikata

    I want to stream the user screen (of the computer using C# app) to a remote server (PHP) through an FLV player or any other way.

    I take a screenshot each 1 seconds, send it as base64 data to the remte server, then save it as X.jpg on the remote server, where X is an incrementing number.

    Once I reach 100 images, I use the command below in order to convert the images into a video :

    exec('ffmpeg -y -r 2 -f image2 -i img%d.jpg -r 20 temp.flv 2>&1 >/dev/null', $output, $exit_status);

    Once the video is created, I display it to the user and delete all files, then repeat the process again, and again in order to keep streaming.

    This way doesn’t really work as expected and it has a lot of drawbacks.

    Is there any alternative way I can broadcast the taken screenshots to the remote client in his browser without having to convert the images to a video and play it and keep on repeating this process ??

  • send browser camera to rtmp server

    22 juin 2022, par anamul

    i am using python and in frotnend javascript.

    


    I am using ffmpeg to push video to rtmp server.

    


    ffmpeg -y -f mp4 -stream_loop -1 -re -i myvideo.mp4
-b:v 3M -vcodec libx264 -r 30.0 -s 1280x720
-c:a copy -b:a 96k
-f flv "rtmps://dfdf222.global-contribute.live-video.net:443/app/"


    


    It is working well but i am not getting how to push to rtmp server of my browser camera ? i mean from javascript ?

    


    i am trying like this :

    


    &#xA;    <video autoplay="autoplay"></video>&#xA;&#xA;    <a href="#">open and stream</a>&#xA;&#xA;    <code class="echappe-js">&lt;script&gt;&amp;#xA;        function streamVideo () {&amp;#xA;            console.log(&amp;#x27;ddd&amp;#x27;)&amp;#xA;            navigator.mediaDevices.getUserMedia({&amp;#xA;            video: {&amp;#xA;&amp;#xA;            },&amp;#xA;            audio: {&amp;#xA;                &amp;#xA;            }&amp;#xA;            }).then(stream=&gt;{&amp;#xA;                console.log(stream)&amp;#xA;                document.getElementById(&amp;#x27;vid&amp;#x27;).srcObject = stream; &amp;#xA;            })&amp;#xA;&amp;#xA;        }&amp;#xA;    &lt;/script&gt;&#xA;&#xA;

    &#xA;

    It is working but not getting any way to push from browser to rtmp server. I know browser doesnt support rtmp protocol, we need to send it from the backend but can i push to server so that it push to rtmp server ?

    &#xA;

    Anyone know the way ?

    &#xA;

  • Confirm HLS server is working only with Windows PC

    29 novembre 2013, par user2357117

    I'm going to set up HTTP Live Streaming server.
    In development environment, only Windows PC is available for the server's client due to network restriction and other regulations.

    How can I confirm that

    • server is publishing HLS movie and
    • real-time movie's delay by viewing it

    only with Windows software ?

    This page shows that browser available on Windows does not support HLS.
    I'm prefer solution with free software, so JW Player may not be a best solution.

    I'm not sure that I can check delay on-the-fly with hls-client or ffmpeg.