Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (38)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • 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 (5964)

  • Download live stream with changing chunklist/.m3u8 using ffmpeg or something similar

    23 juillet 2023, par Oliwer

    I've been trying to record a live stream from a website that change the .m3u8 link from time to time, sometimes it changes every minute and sometimes it changes 3 times in 10 sec. Is there a way to download the live stream in another way ? From my basic knowledge I have understood that they are using cloudflare for the stream.

    


    I know that it's possible to download since other people have been able to do it, but I am not able to find any information about it online.

    


    I've tried to find if there is a "master" file which could be able to give me access to the entire stream without any success.
I have been using -i "chunklist.m3u8" -c copy file.mkv
But every time it changes i have to type it all over with the new chunklist.m3u8

    


    Edit : When the change comes, a Website.com/json/liveApi_hls.asp followed by live-website.hscdn.com/pop_cast29/abc0122_P-00001_20230723223118/index.m3u8 ?%24NjW80dXNopqYmpuYn5qcmJmYm5qcusnWz82imZiYtaK1uKKezbueaEM%3D%24

    


    The change between the files are everything after .m3u8 ?

    


  • What the difference between ffmpeg faststart vs +faststart

    13 octobre 2020, par Devin Dixon

    I see a lot of examples online for

    


    ffmpeg -movflags faststart


    


    and

    


    ffmpeg -movflags +faststart


    


    What is the difference between the two ?

    


  • ffmpeg generate m3u8 and segments manually

    26 juin 2015, par Darshan Bhandari

    We are developing an application where the m3u8 file should be generated on the fly for a given mp4 video. Can someone please let us know how can we generate the mp4 file on the fly with the exact duration as the segmenter. In our case ffmpeg segmenter is created variable length segments and are of decimal size. For eg :
    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:7
    #EXT-X-PLAYLIST-TYPE:VOD

    #EXTINF:5.005,
    test.mp4.ts?start=0.000&end=5.005
    #EXTINF:6.715,
    test.mp4.ts?start=5.005&end=11.720
    #EXTINF:6.548,

    Can someone help us to create such m3u8 file without creating any segments. We will manually create the segments on request.

    Also when we create the segments manually there is a small stuttering (flicker) when the video goes to the next segment. When I read it online, it says it might be due to continuity counter. Can someone please help us fix that too

    Thanks.