Is it possible to integrate grid options into the image/video itself? I thought, if I use one of the grid options it's going to be embedded into the image itself, but that's not the case.
I've found these options are under DrawPreview.java file and basically used for UI only. I'm wondering as a beginner android developer, how would I go on about embedding such features into the image/video itself?
A bad way I found to do this is to use ffmpeg tool to draw a rectangle as a line in center of the video/image itself, but that causes problems when the line is supposed to be diagonal. First, you can't drive diagonal line from center top/bottom with ffmpeg and secondlly, it takes quite some time to format video with ffmpeg.
Any ideas how I could go on about doing this, simply embedding a line from bottom/top center of the screen and onto the image/video itself?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
Is it possible to integrate grid options into the image/video itself? I thought, if I use one of the grid options it's going to be embedded into the image itself, but that's not the case.
I've found these options are under DrawPreview.java file and basically used for UI only. I'm wondering as a beginner android developer, how would I go on about embedding such features into the image/video itself?
A bad way I found to do this is to use ffmpeg tool to draw a rectangle as a line in center of the video/image itself, but that causes problems when the line is supposed to be diagonal. First, you can't drive diagonal line from center top/bottom with ffmpeg and secondlly, it takes quite some time to format video with ffmpeg.
Any ideas how I could go on about doing this, simply embedding a line from bottom/top center of the screen and onto the image/video itself?