Advanced search

Medias (91)

Other articles (66)

  • Organiser par catégorie

    17 May 2013, by

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Création définitive du canal

    12 March 2010, by

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Le profil des utilisateurs

    12 April 2011, by

    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 (...)

On other websites (4854)

  • Update .m3u8 playlist while live streaming

    28 July 2022, by Juan Trejos

    Im using nginx-rtmp-module to create a RTMP server and I'm using hls directives to create the playlist.

    


    hls on;
hls_path /var/www/html/cam/;
hls_fragment 10;
hls_nested on;
hls_playlist_length 7d;
hls_cleanup off;
hls_continuous on;
hls_fragment_naming system;


    


    Now, I want to update manually the .m3u8 playlist file from this:

    


    #EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:12
#EXTINF:10.000,
1658833177814.ts
#EXTINF:10.000,
1658833187826.ts
#EXTINF:10.000,
1658833197826.ts


    


    to this, when the streaming is "on line":

    


    #EXTM3U
#EXT-X-VERSION:3  
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:12
#EXTINF:10.000,
1658833197826.ts


    


    if I do it when there is no live streaming, that works, but if i do it when there is a live streaming, the .m3u8 file becames as the original after the server finish the creation of the last chunk. Even if i delete the .m3u8 file, it is recreated as the original one.

    


    I've also tryed it using ffmpeg instead of hls directives without success, and looked this solution but 😥😥

    


  • What kind of streaming protocol is the following technique of FFMPEG and HTML Video tag?

    29 April 2022, by O Connor

    Many people were looking for live streaming solution on a web page. I want to share the following knowledge after doing so many researches and having spent so many time.

    


    Run the following command line.

    


    ffmpeg -y -rtsp_transport udp -i "my_rtsp_url" -vcodec libx264 -listen 1 -movflags isml+frag_keyframe -f mp4 http://ip_address:port_nr/test.mp4


    


    Add the following HTML video tag to your web page.

    


    <video controls="controls" autoplay="autoplay">&#xA;    <source src="http://ip_address:port_nr/test.mp4" type="video/mp4">&#xA;</source></video>&#xA;

    &#xA;

    Now you can start live-streaming on your web page.

    &#xA;

    My question:

    &#xA;

    In general for a video playback, the browser loads the whole video file test.mp4 first and then just starts playing the video.

    &#xA;

    With the above technique, how can FFMPEG keep pushing video frames to the video source of the HTML without having a complete video file first?

    &#xA;

    Or

    &#xA;

    Video source of the HTML keeps pulling frames from the FFMPEG server?

    &#xA;

    Does anyone know how it works? I am not looking for a streaming solution. I want to understand how these two work together?

    &#xA;

  • Microsoft Smooth Streaming declares timescale of 10M by default

    21 December 2020, by Andrey Rikunov

    As far as I understand timescale should be completely dividable by fps to have exact timestamps.

    &#xA;&#xA;

    Microsoft Smooth Streaming uses timescale 10M by default which is leaked as hardcoded value in various smarttv clients and packaging tools thus limiting video fps to 25 and other dividers of 10M.

    &#xA;&#xA;

    How is it possible to package 24 fps video for mss clients which support 10M only?

    &#xA;