Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (73)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8335)

  • Rtsp streaming, no live

    14 août 2018, par Alejandro

    i follow this topic for streaming rtsp here
    now this is my conf in the server : ffmpeg -v info -i rtsp://XXXXX.ddns.net/onvif1 -c:v copy -c:a copy -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /var/www/html/p433/assets/video/test.m3u8 -loglevel debug

    The client :

    <code class="echappe-js">&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.10.1/hls.light.min.js&quot;&gt;&lt;/script&gt;

    &lt;script src=&quot;https://releases.flowplayer.org/7.2.6/flowplayer.min.js&quot;&gt;&lt;/script&gt;

    &lt;script&gt;<br />
           flowplayer('#player', {<br />
               live: true,  // set if it's a live stream          <br />
               ratio: 9/16, // set the aspect ratio of the stream<br />
               clip: {<br />
                   sources: [<br />
                       // path to the HLS m3u8<br />
                       { type: &quot;application/x-mpegurl&quot;, src: &quot;&amp;lt;?php echo asset_url();?&gt;video/test.m3u8&quot;},<br />
                       // path to an optional MP4 fallback<br />
                       { type: &quot;video/mp4&quot;, src: &quot;//yourserver/path/index.mp4&quot;}<br />
                   ]<br />
               }<br />
           });<br />
    &lt;/script&gt;

    The problem ? dont show video in "Live", only show 20seconds aprox and the video is loop icon loading

    what am I doing wrong ? I try it all night but I think that it reaches the point of not finding the right path

    thanks for your time !

  • Silvia Pfeiffer Live Stream

    21 août, par silvia

    Category : 2
    Uploaded by : Silvia Pfeiffer
    Hosted : youtube

    The post Silvia Pfeiffer Live Stream first appeared on ginger’s thoughts.

  • Different live stream resolutions with rtp and ffmpeg using bluenviron/mediamtx

    17 juin 2023, par Emad Helmi

    I am attempting to use RTP streaming with ffmpeg and Bluenviron Mediamtx. I have a sample file that I publish to the RTMP server using ffmpeg :

    &#xA;

    ffmpeg -re -stream_loop -1 -i files/sample-30s.mp4 -c copy -f flv "rtmp://localhost:1935/show/test?user=myuser&amp;pass=mypass&amp;id=nonblockid"&#xA;

    &#xA;

    I can see the live stream in my browser at localhost:8888. However, I want to have the live stream as m3u8 files with different resolutions. There is no documentation on how to do this in the repo, and some of the solutions on the internet have not worked for me. For example, using this question, I have tried running the following ffmpeg command :

    &#xA;

    ffmpeg -f flv -i "rtmp://server/live/livestream" \&#xA;  -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 \&#xA;  -c:v libx264 -crf 22 -c:a aac -ar 44100 \&#xA;  -filter:v:0 scale=w=480:h=360 -maxrate:v:0 600k -b:a:0 500k \&#xA;  -filter:v:1 scale=w=640:h=480 -maxrate:v:1 1500k -b:a:1 1000k \&#xA;  -filter:v:2 scale=w=1280:h=720 -maxrate:v:2 3000k -b:a:2 2000k \&#xA;  -var_stream_map "v:0,a:0,name:360p v:1,a:1,name:480p v:2,a:2,name:720p" \&#xA;  -preset fast -hls_list_size 10 -threads 0 -f hls \&#xA;  -hls_time 3 -hls_flags independent_segments \&#xA;  -master_pl_name "livestream.m3u8" \&#xA;  -y "livestream-%v.m3u8"&#xA;

    &#xA;

    But this does not work. Should I run another ffmpeg command to get the stream and generate another stream on the same RTMP server ?

    &#xA;