I need to be able to record video of the users face during gameplay in a very simple game I am working on. I need a frame rate of at least 25fps and the front-facing camera will be used. This is for Android tablets and the expected spec will be something akin to the Samsung Galaxy Tab 2.
Ideally, I want to write the game using libGDX. Apart from the drawing of around 20 sprites and detecting user input, nothing else will be going on during the game loop.
With all that in mind, my questions are, firstly, how should I approach this? Is it a bad idea to be using libGDX in this context? Secondly, if using libGDX isn't a good idea when trying to capture video at 25fps, how else could I do it? Simply create my game using the Android SDK? Or is there some other library that would go better with the required camera functionality?