Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (79)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10690)

  • Red5 live stream - huge delay on localhost

    23 janvier 2013, par user1958067

    I m running Red5 1.0.0 RC1, with JW Player and ffmpeg on Linux Mint14

    There is a huge delay while streaming, even when everythings happening on my machine/localhost.

    I do following steps :

    1. FFmpeg : ffmpeg -i 'http://localhost:port' rtmp://localhost/oflaDemo/live.flv

    2. Red5 : TCPnoDelay ist set to true.

    3. JW Player : Bufferlength is set to 0. Also tried 2 and 3.

     :

       <code class="echappe-js">&lt;script type=&amp;#39;text/javascript&amp;#39;&gt;<br />
        jwplayer(&amp;#39;mediaspace&amp;#39;).setup({<br />
       &amp;#39;flashplayer&amp;#39;: &amp;#39;player.swf&amp;#39;,<br />
       &amp;#39;file&amp;#39;: &amp;#39;live&amp;#39;,<br />
       &amp;#39;type&amp;#39;: &amp;#39;rtmp&amp;#39;,<br />
       &amp;#39;streamer&amp;#39;: &amp;#39;rtmp://localhost/oflaDemo&amp;#39;,<br />
       &amp;#39;controlbar&amp;#39;: &amp;#39;none&amp;#39;,<br />
       &amp;#39;autostart&amp;#39;: &amp;#39;true&amp;#39;,<br />
       &amp;#39;bufferlength&amp;#39;: &amp;#39;3&amp;#39;,<br />
       &amp;#39;width&amp;#39;: &amp;#39;640&amp;#39;,<br />
       &amp;#39;height&amp;#39;: &amp;#39;380&amp;#39;<br />
     });<br />
    &lt;/script&gt;

    The delay is something between 7-10 seconds !
    This all is happening on and from localhost, so bandwith shouldnt be the issue.

  • Live Streaming WebM with Wowza Server

    2 décembre 2010, par noreply@blogger.com (John Luther)

    Guest blogger Charlie Good is CTO and co-founder of Wowza Media Systems

    As a company, we at Wowza move fast and like to tinker. When WebM was announced in May, we saw it as a promising new approach to HTML5 video and decided to do an experiment with live WebM streaming over http.

    Adding WebM VP8 video and Vorbis audio to the other encoding formats that our server supported was easy (we designed the Wowza server to be codec-agnostic). We then created a WebMfile and implemented WebM HTTP streaming.

    We originally created the demo as a proof-of-concept for the IBC show in September, 2010 but have made it available to watch on our web site.

    The file is streamed live (more precisely, "pseudo-live") over http using the Wowza server-side publishing API (PDF). The result is very impressive ; playback starts fast and the VP8 image quality is fantastic.

    You will need a WebM-enabled browser or VLC media player 1.1.5 to view the live stream.

    If you’re interested in keeping up with Wowza’s WebM progress, visit Wowza Labs or drop us a note at info@wowzamedia.com.

  • How to publish or push the live stream to RTMP-Nginx server using php and FFmpeg ?

    27 juin 2020, par vijendar

    I want to push the live stream to the RTMP-Nginx server. I am recording the webcam and sending it to the PHP running server using the socket but couldn't find the proper way to push the stream on the RTMP-Nginx server. I am appending the stream after receiving through the socket. I have used this

    &#xA;

    ffmpeg -re -i uploads/test.webm -vcodec libx264 -preset fast -maxrate 1500k -c:a aac -b:a 128k -ac 2 -ar 44100 -f flv rtmp://x.xx.xxx.xx/live/xxx

    &#xA;

    to push on the RTMP-Nginx server. But it's executing on the very first received packet of the video stream and then terminated. I know It's not working with a continuous appended video stream. may be FFmpeg reading as a whole. Hoping for the right direction. Thanks in advance.

    &#xA;