Mir Dunaev

Results 6 comments of Mir Dunaev

We have many docker containers in production that are configured to to stream to loki server. I want to put Vector instead of loki server so that in followup I...

@zamazan4ik Thank you, but I must've not explained it well. The reason we want Loki as source is because our docker daemon is configured to log to Loki and changing...

When using the dec_ai_enc pipeline from the K230 SDK reference examples, I observed that feeding my own 1920x1080 H.265 video results in output with color artifacts—primarily grayscale images with sporadic...

Ok, so it seems that if you want to use kd_mpi_vdec_get_frame() and get NV12 without any color artifacts, your input h265/h264 stream needs to be aligned to 16 pixels (i.e....

How can I use kd_mpi_vdec_get_frame() to get a frame (without color artifacts) from decoder if my input stream is 1920x1080?

Had to reserve to a temporary solution by transcoding my 1920x1080 source into 1920x1088: `ffmpeg -i me_1920x1080.flv -vf "pad=width=1920:height=1088:x=0:y=4:color=black" -fflags +genpts -r 25 -c:v libx264 -preset medium -crf 23 -pix_fmt...