getOSDTime method
Get current OSD time from video stream
Returns current playback time in milliseconds, or 0 if failed
Implementation
Future<int> getOSDTime() async {
try {
final int result = await _enhancedChannel.invokeMethod('getOSDTime') ?? 0;
return result;
} catch (e) {
ezvizLog('Error getting OSD time: $e');
return 0;
}
}