Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (111)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6672)

  • Lossless codec for bayer data

    21 août 2016, par vhdirk

    I’m working with lots of camera’s which capture in BG bayer pattern natively.

    Now, every time I record some data, I save it to the disk in the raw bayer pattern, in an avi container. The problem is, that this really adds up after a while. After one year of research, I have close to 4TB of data...

    So I’m looking for a lossless codec to compress this data. I know I could use libx264 (with —qp 0), or huffYUV, dirac or jpeg2000, but they all assume you have RGB or YUV data. It’s easy enough to convert the bayered data to RGB, and then compress it, but it kind of defeats the purpose of compression if you first triple the data. This would also mean that the demoasicing artefacts introduced by debayering would also be in my source data, which is also not too great. It would be nice to have a codec that can work on the bayered data directly.

    Even more nice would be that the solution would involve a codec that is already supported by gstreamer (or ffmpeg), since that’s what I am already using.

  • avutil/frame : remove comment about avcodec_get_frame_class()

    18 avril 2024, par Andrew Sayers
    avutil/frame : remove comment about avcodec_get_frame_class()
    

    The function was deprecated a while back and deleted last year.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/frame.h
  • Gstreamer queries NVR startTime wrong

    6 septembre 2022, par james.kolinto

    I'm a newbie in gstreamer and I am trying to query a NVR(Network Video Recorder) to get recorded videos of my security camera. Here is my gst pipeline :

    &#xA;

    &#xA;

    gst-launch-1.0 rtspsrc location="rtsp :// :/ ?uuid=&startTime=20220823170000000&endTime=20220824080200000"&#xA; ! rtph264depay ! h264parse ! avdec_h264 ! autovideosink

    &#xA;

    &#xA;

    startTime is in the format of : Year-Month-Day-Hour(2 digits)-Minute(2 digits)-Seconds(5 digits)

    &#xA;

    Here, gstreamer queries the NVR for startTime and endTime, the thing is somehow it queries startTime+startTime like if I want to get 3:00 am at night I get 6 am at night.

    &#xA;

    Plus there is a detail that may have importance, due to the config of my NVR I get videos recorded in startTime + 3, reason is my machine's and NVR's timezone is different. So actually I get startTime + startTime + 3...

    &#xA;

    The same url works well with VLC and ffmpeg -ffplay...

    &#xA;

    Thank you for reading, I appreciate any comments

    &#xA;