diff --git a/README.md b/README.md index 50f58fd..e678a70 100644 --- a/README.md +++ b/README.md @@ -18,18 +18,7 @@ Add to your `pubspec.yaml`: ```yaml dependencies: - splash_video: ^0.0.1 - media_kit: ^1.2.6 - media_kit_video: ^2.0.1 - video_player_media_kit: ^2.0.0 - - # Platform-specific video libraries - media_kit_libs_android_video: any - media_kit_libs_ios_video: any - media_kit_libs_macos_video: any - media_kit_libs_windows_video: any - media_kit_libs_linux: any -``` + splash_video: ^0.0.2 ## Quick Start @@ -44,9 +33,6 @@ void main() { WidgetsFlutterBinding.ensureInitialized(); // Required: Initialize media_kit - MediaKit.ensureInitialized(); - - // Optional: Defer first frame for smooth transition SplashVideo.initialize(); runApp(MyApp()); diff --git a/lib/video_config.dart b/lib/video_config.dart index 71adb64..7df02e2 100644 --- a/lib/video_config.dart +++ b/lib/video_config.dart @@ -30,7 +30,7 @@ class VideoConfig { this.playImmediately = true, this.videoVisibilityEnum = VisibilityEnum.useFullScreen, this.useSafeArea = false, - this.volume = 100.0, + this.volume = 80.0, this.enableAudio = true, this.onPlayerInitialized, });