Is there a way to record a video and superimpose, or overlay, text/graphics on the video? Similar to how they put the score on the screen during a football game.
I am able to record a video but I don't see anyway to add the text/graphics.
I have a timer that checks the GPS speed and issues the record command when the speed is above & below a threshold. It then issues a stop command when the speed is below & above the threshold.
It 'works' in the IDE, why wouldn't it work on a phone?
You will need to write some kind of time/sync simple database (time of video:speed) and store
the speeds to then be triggered/overlay-ed back on top of the video during playback
with a panel/label on top of the video player. (not that hard)
The video will never have the speed's burnt into the video to upload to youtube..etc
but it would work inside of your app, or for sharing video/data to other people with your app
or you need to go down the road less traveled of java/ndk
You will need to write some kind of time/sync simple database (time of video:speed) and store
the speeds to then be triggered/overlay-ed back on top of the video during playback
with a panel/label on top of the video player. (not that hard) Processing Android video frame by frame while recording - Stack Overflow