vikingyw

Results 47 comments of vikingyw

> I have tested rockchip rk3588 in ffmpegcv at cpu mode. There is no need to compile ffmpegcv. The ffmpegcv communicate the `ffmpeg` by running `os.system('ffmpeg -c:v DECODER -i VIDEO...

As for the efficiency of linux pipe, I have done some google search and found this page helpful. [How fast are Linux pipes anyway?](https://mazzo.li/posts/fast-pipes.html) The author made the pipe 20x...

How should I config VideoCaptureStream object so that it can use the ffmpeg lib for decoder/encoder? I used default, but it show error message `RuntimeError: The ffmpeg is not compiled...

> What do you mean of `video stream`. Would that be video files (ffmpegcv.VideoCapture), video cameras (ffmpegcv.VideoCaptureCAM) or IP camera stream (ffmpegcv.VideoCaptureStream). > > Currently, the `VideoCaptureStream` didn't support codec...

For rtsp vdieo stream, I found only VideoCaptureStream can handle it, otherwise I need to give a file as parameter. If I do not do any config in the VideoCaptureStream...

the test program is simple: ``` import ffmpegcv vidin = ffmpegcv.VideoCaptureStream("rtsp url xxxxx") vfile_out = "ffmpegcv_test_out.h264" vidout = ffmpegcv.VideoWriterNV(vfile_out, 'h264', vidin.fps) with vidin, vidout: i=0 for frame in vidin: #cv2.imshow('image',...

> replace the VideoWriterNV with VideoWriter > > ``` > import ffmpegcv > > vidin = ffmpegcv.VideoCapture("rtsp url xxxxx") > > vfile_out = "ffmpegcv_test_out.h264" > vidout = ffmpegcv.VideoWriter(vfile_out, 'h264', vidin.fps)...

Strang thing happened, but it is not related to the ffmpegcv lib. I picked out the ffmpeg command and execute it on bash. e.g, `ffmpeg -loglevel info -i rtsp:////Streaming/Channels/101 -pix_fmt...

> Strang thing happened, but it is not related to the ffmpegcv lib. I picked out the ffmpeg command and execute it on bash. e.g, > > `ffmpeg -loglevel info...

> ffmpeg -loglevel info -i rtsp:////Streaming/Channels/101 -pix_fmt bgr24 -f rawvideo pipe: > /dev/null Your guess is right. It is the problem of pix fmt. But the lowest cpu load is...