Android App to view an NDI®-Stream on an Android mobile phone.
-
Full NDI® Monitoring
Supports full NDI® sources (⚠️ NDI® HX is not supported).
Since NDI® can be network-intensive, using a USB-C Ethernet adapter is strongly recommended. -
UVC HDMI Capture Cards
The app can capture video from UVC-compatible devices, such as USB HDMI capture cards.
This functionality was developed and tested with a low-cost UGREEN Video Capture Card (Amazon), which performed reliably.
Any supported UVC device will automatically appear as an available source.
- Simple focus peaking implementation
- Fixed sharpness sensitivity: 70%
- Exposure warning using zebra stripes
- Fixed threshold: 95 IRE
- 3×3 composition grid for framing assistance
Before building, we need to make sure that the following components are installed:
- Java Development Kit (JDK) 11
- Android SDK Platform 33
- NDI SDK for Android
This project must be built with Java 11. Newer Java versions (e.g. Java 17) may cause Gradle or NDK build failures. The reason is, that this project should be runnable on older phones. Android SDK Platform Level 33 uses Java 11.
Install Android SDK Platform 33. Instruction can be found here
Download the NDI SDK for Android from the official site
Follow the installer instructions for your platform and note the installation directory.
After installation, copy the NDI header files into the project’s C++ include directory:
cp <NDI_SDK_INSTALL_DIR>/NDI\ SDK\ for\ Android/include/* \ <PROJECT_ROOT>/NdiMonitor/app/src/main/cpp/include/
Next, copy the NDI library binaries into the project’s jniLibs directory:
cp <NDI_SDK_INSTALL_DIR>/NDI\ SDK\ for\ Android/lib/* <PROJECT_ROOT>/NdiMonitor/app/src/main/jniLibs/
Ensure that the copied libraries match the ABIs you intend to build for (e.g. arm64-v8a, armeabi-v7a).
./gradlew assemble
This app is in a very early development phase. Therefore it is not fully tested. It is possible that the app does not work stable and that there are some ui or- performance glitches.
NDI® is a registered trademark of the Vizrt Group. Also visit http://ndi.video for details.
This project is licensed under the APACHE License 2.0. See included LICENSE file.


