mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-01-11 22:40:23 +00:00
Some checks failed
Build and Deploy / build_windows (push) Has been cancelled
Build and Deploy / build_android (push) Has been cancelled
Build and Deploy / build_ipa (push) Has been cancelled
Build and Deploy / build_linux (push) Has been cancelled
Build and Deploy / build_macos (push) Has been cancelled
7 lines
340 B
Dart
7 lines
340 B
Dart
import 'package:madari_client/features/video_player/container/state/video_settings.dart';
|
|
import 'package:media_kit/media_kit.dart';
|
|
|
|
void setDelay(NativePlayer platform, VideoSettingsProvider settings) {
|
|
platform.setProperty('sub-delay', "${-settings.subtitleDelay}");
|
|
platform.setProperty('audio-delay', "${-settings.audioDelay}");
|
|
}
|