mendevi.plot.extract.extract_profile

mendevi.plot.extract.extract_profile(raw: dict[str]) str[source]

Return the profile of the video.

SELECT t_vid_video.vid_width
FROM t_vid_video

or, alternativaly

SELECT t_vid_video.vid_width
FROM t_dec_decode
JOIN t_vid_video
    ON t_dec_decode.dec_vid_id = t_vid_video.vid_id

or, alternativaly

SELECT t_vid_video.vid_width
FROM t_enc_encode
JOIN t_vid_video
    ON t_enc_encode.enc_src_vid_id = t_vid_video.vid_id

or, alternativaly

SELECT t_vid_video.vid_width
FROM t_met_metric
JOIN t_vid_video
    ON t_met_metric.met_dis_vid_id = t_vid_video.vid_id

The profile is determined based on the width of the video.

Parameters

rawdict[str]

The result line of select request.