Timestamp of each frame
See original GitHub issueI need to save the timestamp ( millisecods ) of each frame. ( Also i need only the video not the audio. How its possible with RecordRTC?
This is my code:
recordAudio = RecordRTC(stream, {
frameRate: 30,
quality: 1,
onAudioProcessStarted: function() {
recordVideo.startRecording();
}
});
recordVideo = RecordRTC(stream, {
type: 'video'
});
recordAudio.startRecording();`
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Getting timestamp of each frame in a video - Stack Overflow
I have stored the start timestamp in milliseconds (Unix time) for each video. Unfortunately each video has a different framerate (ranging from ...
Read more >Extract timestamp of each frame in a video - OpenCV Forum
I have captured several videos from a USB camera connected to NVidia Jetson TX2 board using openCV VideoCapture and VideoWriter methods.
Read more >How to get the timestamp of each frame in Viewer
Hello. I am using DAVIS346 and would like to get the timestamp of each frame. How can I get the timestamp of each...
Read more >Converting video timestamps to frame numbers
The spreadsheet includes a timestamp for each frame, in seconds, to two digits of precision. I need to convert these timestamps back to...
Read more >Save frames of live video with timestamps - Python OpenCV
Then datetime.now() will give the current date and time put this timestamp on that frame and display the image by using the cv2.imshow() ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

The stream you would pass in would have video: true, audio: false, this is not RecordRTC’s job. However, RecordRTC does not / can not give you the timestamp per frame as there is no way to inject the ondataavailable callback at this time.
I just follow your suggestions:
But nothing happen, no error and no message on console log.