Recherche avancée

Médias (91)

Autres articles (32)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • How can I extract the characteristics of multimedia video stream while the video is streaming ?

    10 mai 2021, par Kai

    I have built adaptive video streaming ,DASH, over SDN network and was wondering if I can get some video characteristics while the video is streaming. I have used youtube_dl and was able to get the received video after the completion of the stream however, I want to get the video characteristics such as (stream size, bitrate, frame rate, resolution and etc.) while streaming. I hope that you can provide me with a script to extract and generate a file that contains such information.

    


  • How can i stop ffmpeg buffer from streaming ?

    23 juin 2020, par sniper

    I try to obtain a screenshoot for live streaming when websockets announce he need a screenshoot.

    


    At this moment I use this command for a subprocess on python :

    


    command = 'ffmpeg -ss 00:00:01 -i '+str(urllive)+' -vframes 1 -q:v 2 /var/www/html/ai/dist/img/'+str(canlive)+'.png -y'

    


    the script is working very well but this command is a for iteration, and execute the command for 7-12 times in less than 1 second.
The problem is when ffmpeg take the screenshoot start the streaming and take the buffer for this stream.
The buffer stream have around 7MB * 10(iteration) mean 70 MB, and load the network traffic with 70MB*8 = 560Mbps on that second.
How can i disable or reduce the buffer on ffmpeg client ?
    
I tried with bufsize 1M, -fflags nobuffer args but no success.

    


    ffmpeg version 3.4.6

    


  • Start streaming from specific minute in ffmpeg ?

    20 août 2015, par Alex Levi

    I have a m3u8 file and I want to stream it using ffmpeg . The problem is that I don’t need the first 20 minutes included in the video . Is there any way to start streaming that m3u8 file from the 21 minute ?