Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (53)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10574)

  • Extract playable parts from unfinished torrent video ?

    9 avril 2016, par MostafaZ4

    Torrents download files by pieces.
    Is it possible to extract downloaded parts from unfinished torrent of a movie into a video that contains only the downloaded parts ??

  • Create thumbnails of sections of a torrent stream

    14 juillet 2015, par Ortixx

    I’m trying to create a little application in nodejs using the torrent-stream library to create thumbnails of a video without actually having to download the entire file. I was thinking of downloading only 10 parts, out of which I would extract an image, but then the encoding comes into play : without an I-frame I cannot extract an image out of the stream, and there is no way of me knowing where the I-frame is.

    So any ideas on how to do this ? Basically I was hoping to create 10 tiny files which I could then open in ffmpeg in order to save a thumbnail (this would give me 10 thumbnails which is want I want). I’m just not sure how to handle the stream.

  • HLS live stream stops working with AbortError after running fine for a while

    20 juillet 2020, par mandrakey

    Before I go file a bug with Video.js I wanted to see if I maybe have gotten something wrong. The situation is this :

    


      

    • I have a RTSP live stream, which I convert to HLS using ffmpeg (works)
    • 


    • I want to play that HLS stream using Video.js in the browser
    • 


    


    After I start ffmpeg, all works as expected and I can watch the live stream in the browser. This was, say, around 4pm. I go home for the day and when I try to access the stream again in the morning (around 8am, freshly started browser) I just get a black image (Firefox) or a still (Chrome) and a never ending loading animation.

    


    The browser console shows the following output every 6 seconds (which is my chunk length) :

    


    AbortError: The operation was aborted. 
XHR GET http://server/hls/live/stream1/720p6.ts [HTTP/1.1 200  71ms]
XHR GET http://server/hls/live/stream1/720p7.ts [HTTP/1.1 200  64ms]
XHR GET http://server/hls/live/stream1/720p8.ts [HTTP/1.1 200  62ms]
XHR GET http://server/hls/live/stream1/720p9.ts [HTTP/1.1 200  57ms]
XHR GET http://server/hls/live/stream1/720p0.ts [HTTP/1.1 200  63ms]


    


    Note : The chunk numbers in the end do change correctly, so it does not look like an infinite loop where video.js tries to access the same files over and over again.

    


    I have compared the m3u8 contents from a time when this happens to just after I restarted ffmpeg. The only difference I can spot is that the sequence number has increased :

    


    Working version

    


    #EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:2
#EXTINF:6.000011,
720p2.ts
#EXTINF:5.999989,
720p3.ts
#EXTINF:6.000000,
720p4.ts
#EXTINF:6.000000,
720p5.ts
#EXTINF:6.000000,
720p6.ts


    


    Not working version

    


    #EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:45255
#EXTINF:6.000011,
720p5.ts
#EXTINF:5.999989,
720p6.ts
#EXTINF:6.000000,
720p7.ts
#EXTINF:6.000011,
720p8.ts
#EXTINF:5.999989,
720p9.ts


    


    What I have confirmed so far :

    


      

    • The video chunks ffmpeg creates work. I have downloaded newly generated chunks and played them using VLC : Got a 6 second video as expected.
    • 


    • This also means the source stream still works as expected.
    • 


    • It does not seem to be an issue with the browser as both Firefox and Chrome show the same behaviour.
    • 


    • When I restart ffmpeg, which as far as I can see only resets the sequence number, everything works fine again after I reload the video.js player.
    • 


    • It is no one time issue : I have tried this more than 4 days in a row now. Happens every time.
    • 


    


    Have I stumbled upon a bug in video.js here or am I missing something ?

    


    For reference, this is how I start ffmpeg :

    


    ffmpeg -v info -rtsp_transport tcp -i rtsp://source/stream -c:v copy -c:a copy -hls_time 6 -hls_wrap 10 -start_number 1 /path/to/stream1/720p.m3u8


    


    Thank you very much for reading and taking the time so far. Any help will be much appreciated :)