Stop a function from writing to stdout

后端 未结 2 1344
清歌不尽
清歌不尽 2021-01-24 15:31

I have this line in my code:

writer = cv.CreateVideoWriter(\'video.avi\', cv.CV_FOURCC(\'X\',\'V\',\'I\',\'D\'), 30 ,(480,800), 1)

Which output

2条回答
  •  情歌与酒
    2021-01-24 16:12

    It's not OpenCV that outputs this info. It's FFMPEG (which is called by OpenCV).

    You can recompile FFMPEG to disable these debugs.

提交回复
热议问题