From c2b38a7c5a4b88954f7e52fde99c03a9c2f3db0a Mon Sep 17 00:00:00 2001 From: zarzet Date: Tue, 30 Jun 2026 06:20:55 +0700 Subject: [PATCH] fix(banner): allow motion artwork video to mix with other audio Enable mixWithOthers on HLS motion header playback so preview audio and other apps are less likely to be ducked or interrupted. --- lib/widgets/motion_header_banner.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/widgets/motion_header_banner.dart b/lib/widgets/motion_header_banner.dart index a37ca2de..793f8993 100644 --- a/lib/widgets/motion_header_banner.dart +++ b/lib/widgets/motion_header_banner.dart @@ -56,6 +56,7 @@ class _MotionHeaderBannerState extends State final controller = VideoPlayerController.networkUrl( Uri.parse(url), formatHint: VideoFormat.hls, + videoPlayerOptions: VideoPlayerOptions(mixWithOthers: true), ); _controller = controller; try {