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
- Host: GitHub
- URL: https://github.com/asus4/unity-video-supported-plugin
- Owner: asus4
- License: mit
- Created: 2017-05-21T15:35:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-22T03:11:42.000Z (about 9 years ago)
- Last Synced: 2025-10-22T23:33:36.257Z (8 months ago)
- Topics: android, ios, unity
- Language: C#
- Size: 44.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```