Recherche avancée

Médias (91)

Autres articles (71)

  • 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 plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (6888)

  • Can we detect whether a live udp stream packet contains a key frame or not ?

    12 janvier 2023, par Miuru Shalinda Rajapaksha

    Is there a way to detect whether there is a key frame within a video packet or not ?

    


    What I want do is I want to cut the live udp stream into seperate 30 second .ts files, and then concatenate the files including several other .ts file using ffmpeg and restream to rtmp (youtube). I can achieve this but the only problem I have is after concatenating the files there is drop frame after each 30 seconds, the reason for this is I have cut the live stream without considering the key frames. Therefore what I want is to cut the live stream based on its key frames. Im doing this using python and ffmpeg. Is there a way to detect whether a video packet contains a key frame or not ?

    


  • Does Facebook multicast or unicast the live videos to its viewers ?

    14 avril 2018, par Kamran Zahoor

    This is how a live stream goes from one broadcaster to millions of viewers :

    1. A broadcaster starts a live video on their phone.
    2. The phone sends a RTMP stream to a Live Stream server.
    3. The Live Stream server decodes the video and transcodes to multiple bit rates.
    4. For each bit rate a set of one-second MPEG-DASH segments is continuously produced.
    5. Segments are stored in a datacenter cache.
    6. From the datacenter cache segments are sent to caches located in the points of presence (a PoP cache).
    7. On the view side the viewer receives a Live Story.
    8. The player on their device starts fetching segments from a PoP cache at a rate of one per second.

    My question is simple. After the step 6, does PoP cache/Edge cache/eNB (edge layer node) multicast a live video content to multiple viewers or unicast each user separately (opening up seperate streams for each user) ?

  • FFMpeg Copy Live Stream (Limit to 60s file)

    17 février 2021, par Garret Harp

    I currently have a working way to get a live stream and start downloading it locally while it is still live.

    



    ffmpeg -i source_hls.m3u8 -c copy output.mkv -y

    



    The problem is I do not actually want to save the entire thing, I just periodically run another command on the output.mkv command to create a clip of part of the live stream.

    



    I was wondering if it was possible to limit the output.mkv file to be only 60s long so once the stream goes over 1 minute it will just cut off the old video and be replaced by the new rolling video.

    



    Is this possible or no ?