Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (39)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5544)

  • Scaling Application for video decoding using ffmpeg

    6 juillet 2020, par jasoos

    I am building an application to read multiple IP camera streams (rtsp) and run different Machine Learning Algorithms over it in real time. For each camera stream,

    


      

    1. I spawn an ffmpeg process which continuously break the rtsp streams
into frames and store them as images (JPEG). The streams use H.264
encoding. I am taking 1 frame every second as output.
    2. 


    3. Message queues corresponding to models are given the message
containing location of the file.
    4. 


    5. Models keep on picking up the file and drawing inferences
    6. 


    


    The problem I am facing is the CPU usage by ffmpeg decoding process. For real time inference without any loss of frames, I have to beef up my server by a core for every 2 camera streams. Is there any optimization I am missing for ffmpeg ?

    


    I am using Intel Xeon Gold processor with Ubuntu 18.04 OS

    


  • How to get video start time with libvlc

    7 juillet 2015, par 0xbaadf00d

    I’m trying to sync multiple videos based on the real time they were saved at.

    For playing the video, I ended up with libvlc, but now i’m unable to read the metadata that contains the time at which the video starts.

    I would use the start time to calculate offsets for videos, so that i can sync them with each other.

    I created the video from an rtsp stream with the ffmpeg command

    ffmpeg -i <stream path="path"> -timestamp now output.mp4
    </stream>

    looking at the file with ffprobe, I can see that it contains the correct timestamp in creation_time.

    But this I am unable to read with libvlc.

    Is there a way to save the real wallclock start time on the video in such a way that i can read it from libvlc ?

    Other suggestions that tell me how to sync two videos are welcome as well.

  • ffmpeg command to is throwing error

    25 février 2013, par Bhargav Shah

    I am new to ffmpeg usage.
    I am trying to merge two video file.
    The below bullets will provide you more details about it.

    1. I-ball usb camera
    2. Screen capture utility named UScreenCapture.

    The below command i am using on DOS.

    ffmpeg -f dshow  -i video="iBall Face2Face Webcam C12.0" -f dshow -i video="UScreenCapture"  -r 25 -vcodec mpeg4 -q 12 -f mpegts test.ts

    This command captures only from Uscreencapture source.

    while grabbing frames from Camera it is giving me an error saying that
    real-time buffer 90% full ! frame dropped !
    real-time buffer 121% full ! frame dropped !

    Can any one provide me the solution for this issue ?