How to change vlc source code to append motiondetect filter timestamps to the log?
Posted: 22 May 2020 01:37
Please move this to the appropriate section.
https://github.com/videolan/vlc-3.0/blob/master/modules/video_filter/motiondetect.c
I see a line at the end:
this is similar to (resulting log):
How do it?
Please move this to the appropriate section.
https://github.com/videolan/vlc-3.0/blob/master/modules/video_filter/motiondetect.c
I see a line at the end:
Code: Select all
msg_Dbg( p_filter, "Counted %d moving shapes.", j );
Ideally, the log should look like this:motiondetect debug: Counted 3 moving shapes.
motiondetect debug: Counted 5 moving shapes.
motiondetect debug: Counted 2 moving shapes.
Instead of timestamp, the frame number will also be great.motiondetect debug: Counted 3 moving shapes (timestamp 00:01:23.342).
motiondetect debug: Counted 5 moving shapes (timestamp 00:01:23.425).
motiondetect debug: Counted 2 moving shapes (timestamp 00:01:23.508).
How do it?
Please move this to the appropriate section.