You can cast your Android device's screen to one or more Android devices using my Duplila app.
Duplila allows you to project your display content and audio onto another Android device, similar to adding a s...
My Duplila app enables screen sharing between Android devices. It utilizes an ADB connection to stream screen content and audio between two or more Android devices.
While there may already be other options available for screen mirroring (such as Miracast), I believe that using ADB for this purp...
How to Reverse Video on Android (Without FFMPEG)
Android natively offers APIs that enable video processing and various video effects. I used some of these APIs already in my previous projects. MediaCodec and OpenGL ES are the main parts that enabled video processing.
I'm planning to use MediaCodec and OpenGL ES also in...
Adding Text Overlay to Video on Android
Android offers various APIs for video encoding, decoding, and editing. In my other posts I already showed some examples on how to use these API's. In this post I would like to extend the information from my previous post and add a new use case - embedding text into existing ...
Android's MediaCodec API
offers functionality that allows you to decode and encode video and audio efficiently, possibly also with hardware acceleration.
Used together with OpengGL ES
, you get access to powerful APIs for manipulating and editing video files.
In this post I would like...