An open API service indexing awesome lists of open source software.

https://github.com/asus4/unity-video-supported-plugin

Check iOS/Android supported video format from unity
https://github.com/asus4/unity-video-supported-plugin

android ios unity

Last synced: about 2 months ago
JSON representation

Check iOS/Android supported video format from unity

Awesome Lists containing this project

README

          

# unity-video-supported-plugin
Check iOS/Android supported video format from unity

```cs
// FullHD, NTSC support?
bool isFullHDSupported = VideoSupported.IsSupported(1920, 1080, 29.97f);

// 4K, NTSC support?
bool is4kSupported = VideoSupported.IsSupported(3840, 1920, 29.97f);
```