I would like to know how to export video with graphics on it. How do I merge them together for export into one video file? Is there a tutorial on how to do so? If not do you have any handy tips for me?
If you are asking how to load a video in Corona and add some graphics, filters or shaders on top of said video, and then export the result, then the answer is: through difficulty and native programming.
The docs state that “native video objects are not part of the OpenGL canvas and do not obey the display object hierarchy, so they will always appear in front of normal display objects including images, text, and vector objects.” (https://docs.coronalabs.com/api/library/native/newVideo.html)
You could, perhaps, achieve that via native programming where you literally create a video player from ground up, but what you are asking isn’t doable on Corona out of the box.
Oh ok. I basically trying to make my own video editor where I can overlay objects onto video and export video to the photo gallery on the phone. This might be a thing to do through Xcode I guess.
If you are asking how to load a video in Corona and add some graphics, filters or shaders on top of said video, and then export the result, then the answer is: through difficulty and native programming.
The docs state that “native video objects are not part of the OpenGL canvas and do not obey the display object hierarchy, so they will always appear in front of normal display objects including images, text, and vector objects.” (https://docs.coronalabs.com/api/library/native/newVideo.html)
You could, perhaps, achieve that via native programming where you literally create a video player from ground up, but what you are asking isn’t doable on Corona out of the box.
Oh ok. I basically trying to make my own video editor where I can overlay objects onto video and export video to the photo gallery on the phone. This might be a thing to do through Xcode I guess.