Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (70)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

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

Sur d’autres sites (8294)

  • fate/hevc : add BUMPING bitstream test

    25 juillet 2014, par Mickaël Raulet
    fate/hevc : add BUMPING bitstream test
    

    cherry picked from commit d4d61a071f087db2a4bc2b49559d40dd350a841e

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tests/fate/hevc.mak
    • [DH] tests/ref/fate/hevc-conformance-BUMPING_A_ericsson_1
  • hevc : better mt implementation

    27 octobre 2013, par Anton Khirnov
    hevc : better mt implementation
    

    Signed-off-by : Mickaël Raulet <mraulet@insa-rennes.fr>
    (cherry picked from commit 93afb8c519deca85b3c97804927de5b016dd32d1)
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/hevc.c
    • [DH] libavcodec/hevc_filter.c
    • [DH] libavcodec/hevc_mvs.c
  • Opencv/FFMPEG retrieving wrong fps while streaming cameras

    15 avril 2016, par Romanzo Criminale

    I’ve have been trying to retrieve the fps information from different camera stream via RTSP. This is done using the OpenCV library which uses the libavormat provided by ffmpeg. However it seems I can’t rely on the information returned by libav depending on the codec or the camera used. I would like to get a better understanding about how this frame rate are computed etc...

    OpenCV is trying to retrieve the fps of the stream using different properties of AVStream, r_frame_rate, avg_frame_rate and time_base.

    double CvCapture_FFMPEG::get_fps() const
    {
    #if LIBAVCODEC_BUILD >= CALC_FFMPEG_VERSION(54, 1, 0)
     double fps = r2d(ic->streams[video_stream]->avg_frame_rate);
    #else
     double fps = r2d(ic->streams[video_stream]->r_frame_rate);
    #endif

    #if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(52, 111, 0)
     if (fps &lt; eps_zero)
     {
       fps = r2d(ic->streams[video_stream]->avg_frame_rate);
     }
    #endif

    if (fps &lt; eps_zero)
    {
     fps = 1.0 / r2d(ic->streams[video_stream]->codec->time_base);
    }

    return fps;
    }

    I tried two different camera brands and two different codecs H264, and JPEG. Here are the results, I get :

    Camera 1 running at 15fps (default value)

    camera 1, jpeg

    • r_frame_rate = 15/1
    • avg_frame_rate = 0/0
    • time_base = 1/ 90000
    • tick_per_frame = 1

    camera 1, h264

    • r_frame_rate = 15/1

    • avg_frame_rate = 15/2

    • time_base = 1/ 90000

    • tick_per_frame = 2

    Camera 2 running at 25fps default but the fps is changed within the rtsp url to 12

    camera 2, jpeg

    • r_frame_rate = 12/1

    • avg_frame_rate = 0/0

    • time_base = 1/ 90000

    • tick_per_frame = 1

    camera 2, h264 running at 12fps

    • r_frame_rate = 25/1

    • avg_frame_rate = 0/0

    • time_base = 1/ 90000

    • tick_per_frame = 2

    Also i tried streaming using ffmpeg command line

    ffmpeg -i rtsp://url

    and it seems that only jpeg can return the expected fps.

    Here are the questions have been asking myself :

    1/ what’s really r_frame_rate ?
    It says in the api "[i]it is the smallest frame rate that can accurately represent all timestamps. For example, if you have mixed 25 and 30 fps content, then
    will be 150 (it is the least common multiple).[/i]" I doesn’t make sense to me that it the same time the smallest frame rate (25) and the least common multiple (150).

    2/ How is the avg_frame_rate computed ?
    I had a look at the code but couldn’t really figure out how is this average computed. It seems that most of the time this is returning 0.

    3/ Is there a bug getting the frame rate while using h264 ?
    Using jpeg, it looks like r_frame_RATE can return the actual fps value, but h264 will not work. Are those information not available using h264 ?

    Any help would be appreciated, I spent two days trying to understand why i wasn’t getting the correct values but at this point i’m pretty stuck.
    Thanks in advance !