import 'dart:async'; import 'dart:io'; import 'package:bot_toast/bot_toast.dart'; import 'package:draggable_menu/draggable_menu.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart' as riv; import 'package:mangayomi/models/chapter.dart'; import 'package:mangayomi/models/video.dart' as vid; import 'package:mangayomi/modules/anime/providers/anime_player_controller_provider.dart'; import 'package:mangayomi/modules/anime/widgets/aniskip_countdown_btn.dart'; import 'package:mangayomi/modules/anime/widgets/desktop.dart'; import 'package:mangayomi/modules/anime/widgets/mobile.dart'; import 'package:mangayomi/modules/manga/reader/providers/push_router.dart'; import 'package:mangayomi/modules/more/settings/player/providers/player_state_provider.dart'; import 'package:mangayomi/modules/widgets/progress_center.dart'; import 'package:mangayomi/providers/l10n_providers.dart'; import 'package:mangayomi/services/aniskip.dart'; import 'package:mangayomi/services/get_video_list.dart'; import 'package:mangayomi/utils/extensions/build_context_extensions.dart'; import 'package:media_kit/media_kit.dart'; import 'package:media_kit_video/media_kit_video.dart'; import 'package:media_kit_video/media_kit_video_controls/src/controls/extensions/duration.dart'; import 'package:window_manager/window_manager.dart'; class AnimePlayerView extends riv.ConsumerStatefulWidget { final Chapter episode; const AnimePlayerView({super.key, required this.episode}); @override riv.ConsumerState createState() => _AnimePlayerViewState(); } class _AnimePlayerViewState extends riv.ConsumerState { @override Widget build(BuildContext context) { final serversData = ref.watch(getVideoListProvider( episode: widget.episode, )); SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersive); return serversData.when( data: (data) { if (data.$1.isEmpty && !(widget.episode.manga.value!.isLocalArchive ?? false)) { return Scaffold( backgroundColor: Theme.of(context).scaffoldBackgroundColor, appBar: AppBar( title: const Text(''), leading: BackButton( onPressed: () { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); }, ), ), body: WillPopScope( onWillPop: () async { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); return false; }, child: const Center( child: Text("Error"), ), ), ); } return AnimeStreamPage( episode: widget.episode, videos: data.$1, isLocal: data.$2, ); }, error: (error, stackTrace) => Scaffold( backgroundColor: Theme.of(context).scaffoldBackgroundColor, appBar: AppBar( title: const Text(''), leading: BackButton( onPressed: () { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); }, ), ), body: WillPopScope( onWillPop: () async { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); return false; }, child: Center( child: Text(error.toString()), ), ), ), loading: () { return Scaffold( backgroundColor: Colors.black, extendBodyBehindAppBar: true, appBar: AppBar( title: const Text(''), leading: BackButton( color: Colors.white, onPressed: () { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); }, ), ), body: WillPopScope( onWillPop: () async { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); return false; }, child: const ProgressCenter(), ), ); }, ); } } class AnimeStreamPage extends riv.ConsumerStatefulWidget { final List videos; final Chapter episode; final bool isLocal; const AnimeStreamPage( {super.key, required this.isLocal, required this.videos, required this.episode}); @override riv.ConsumerState createState() => _AnimeStreamPageState(); } class _AnimeStreamPageState extends riv.ConsumerState { late final GlobalKey _key = GlobalKey(); late final Player _player = Player(); late final VideoController _controller = VideoController(_player); late final _streamController = ref.read(animeStreamControllerProvider(episode: widget.episode).notifier); late final _firstVid = widget.videos.first; late final ValueNotifier _video = ValueNotifier(VideoPrefs( videoTrack: VideoTrack( _firstVid.originalUrl, _firstVid.quality, _firstVid.quality), headers: _firstVid.headers)); late final ValueNotifier _subtitle = ValueNotifier( SubtitleTrack.uri(_firstVid.subtitles?.first.file ?? "", title: _firstVid.subtitles?.first.label, language: _firstVid.subtitles?.first.label)); late final ValueNotifier _audio = ValueNotifier(AudioTrack.uri( _firstVid.audios?.first.file ?? "", title: _firstVid.audios?.first.label, language: _firstVid.audios?.first.label)); final ValueNotifier _playbackSpeed = ValueNotifier(1.0); bool _seekToCurrentPosition = true; bool _initSubtitle = true; final ValueNotifier _enterFullScreen = ValueNotifier(false); late final ValueNotifier _currentPosition = ValueNotifier(_streamController.geTCurrentPosition()); final ValueNotifier _currentTotalDuration = ValueNotifier(null); final ValueNotifier _showFitLabel = ValueNotifier(false); final ValueNotifier _isCompleted = ValueNotifier(false); final ValueNotifier _tempPosition = ValueNotifier(null); final ValueNotifier _fit = ValueNotifier(BoxFit.contain); final bool _isDesktop = Platform.isWindows || Platform.isMacOS || Platform.isLinux; late StreamSubscription _currentPositionSub = _player.stream.position.listen( (position) async { if (_seekToCurrentPosition && _currentPosition.value != Duration.zero) { await _player.stream.buffer.first; _player.seek(_currentPosition.value); _isCompleted.value = _player.state.duration.inSeconds - _currentPosition.value.inSeconds <= 10; _seekToCurrentPosition = false; } else { _currentPosition.value = position; } if ((_firstVid.subtitles ?? []).isNotEmpty) { if (_initSubtitle) { try { _player.setSubtitleTrack(_subtitle.value ?? SubtitleTrack.no()); } catch (_) {} _initSubtitle = false; } } }, ); late final StreamSubscription _currentTotalDurationSub = _player.stream.duration.listen( (duration) { _currentTotalDuration.value = duration; }, ); Results? _openingResult; Results? _endingResult; bool _hasOpeningSkip = false; bool _hasEndingSkip = false; final ValueNotifier _showAniSkipOpeningButton = ValueNotifier(false); final ValueNotifier _showAniSkipEndingButton = ValueNotifier(false); @override void initState() { _setCurrentPosition(true); _currentPositionSub; _currentTotalDurationSub; _player.open(Media(_video.value!.videoTrack!.id, httpHeaders: _video.value!.headers)); _setPlaybackSpeed(ref.read(defaultPlayBackSpeedStateProvider)); _initAniSkip(); super.initState(); } void _initAniSkip() async { await _player.stream.buffer.first; _streamController.getAniSkipResults((result) { final openingRes = result.where((element) => element.skipType == "op").toList(); _hasOpeningSkip = openingRes.isNotEmpty; if (_hasOpeningSkip) { _openingResult = openingRes.first; } final endingRes = result.where((element) => element.skipType == "ed").toList(); _hasEndingSkip = endingRes.isNotEmpty; if (_hasEndingSkip) { _endingResult = endingRes.first; } if (mounted) { setState(() {}); } }); } @override void dispose() { _setCurrentPosition(true); _player.dispose(); _currentPositionSub.cancel(); _currentTotalDurationSub.cancel(); _setLandscapeMode(false); super.dispose(); } void _setCurrentPosition(bool save) { _streamController.setCurrentPosition( _currentPosition.value, _currentTotalDuration.value, save: save); _streamController.setAnimeHistoryUpdate(); } void _setLandscapeMode(bool state) { if (state) { SystemChrome.setPreferredOrientations( [DeviceOrientation.landscapeLeft, DeviceOrientation.landscapeRight]); } else { SystemChrome.setPreferredOrientations([ DeviceOrientation.portraitUp, DeviceOrientation.portraitDown, DeviceOrientation.landscapeLeft, DeviceOrientation.landscapeRight ]); } } Widget _videoQualityWidget(BuildContext context) { List videoQuality = _player.state.tracks.video .where((element) => element.w != null && element.h != null && widget.isLocal) .toList() .map((e) => VideoPrefs(videoTrack: e, isLocal: true)) .toList(); if (widget.videos.isNotEmpty && !widget.isLocal) { for (var video in widget.videos) { videoQuality.add(VideoPrefs( videoTrack: VideoTrack(video.url, video.quality, video.quality), headers: video.headers, isLocal: false)); } } return Column( children: videoQuality.map((quality) { final selected = _video.value!.videoTrack!.title == quality.videoTrack!.title || widget.isLocal; return GestureDetector( child: Row( children: [ Padding( padding: const EdgeInsets.symmetric(horizontal: 20), child: Icon( Icons.check, color: selected ? Colors.white : Colors.transparent, ), ), Expanded( child: Text( widget.isLocal ? _firstVid.quality : quality.videoTrack!.title!, style: Theme.of(context).textTheme.bodyLarge!.copyWith( fontSize: 16, color: selected ? Colors.white : Colors.white.withOpacity(0.6)), maxLines: 1, overflow: TextOverflow.ellipsis, ), ), ], ), onTap: () { _video.value = quality; // change the video quality if (quality.isLocal) { if (widget.isLocal) { _player.setVideoTrack(quality.videoTrack!); } else { _player.open(Media(quality.videoTrack!.id, httpHeaders: quality.headers)); } } else { _player.open( Media(quality.videoTrack!.id, httpHeaders: quality.headers)); } _seekToCurrentPosition = true; _currentPositionSub = _player.stream.position.listen( (position) async { if (_seekToCurrentPosition && _currentPosition.value != Duration.zero) { await _player.stream.buffer.first; _player.seek(_currentPosition.value); try { _player.setSubtitleTrack(_subtitle.value!); } catch (_) {} _seekToCurrentPosition = false; } else { _currentPosition.value = position; } }, ); Navigator.pop(context); }, ); }).toList(), ); } void _videoSettingDraggableMenu(BuildContext context) async { final l10n = l10nLocalizations(context)!; _player.pause(); await DraggableMenu.open( context, DraggableMenu( ui: ClassicDraggableMenu( radius: 30, barItem: Container(), color: Colors.black.withOpacity(0.6)), minimizeThreshold: 0.6, levels: [ DraggableMenuLevel.ratio(ratio: 2 / 3), DraggableMenuLevel.ratio(ratio: 0.9), ], minimizeBeforeFastDrag: true, child: Material( color: Colors.transparent, borderRadius: BorderRadius.circular(20), clipBehavior: Clip.antiAliasWithSaveLayer, child: Padding( padding: const EdgeInsets.all(8.0), child: Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ Expanded( child: SingleChildScrollView( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Padding( padding: const EdgeInsets.only( top: 8, left: 12, bottom: 5), child: Row( children: [ Text(l10n.video_quality, style: Theme.of(context) .textTheme .bodyLarge! .copyWith( color: Colors.white, fontWeight: FontWeight.bold, fontSize: 20)), ], ), ), const Padding( padding: EdgeInsets.symmetric(vertical: 5)), _videoQualityWidget(context) ], ), ), ), Container( color: Colors.white, width: 0.2, height: context.mediaHeight(1)), Expanded( child: SingleChildScrollView( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Padding( padding: const EdgeInsets.only( top: 8, left: 12, bottom: 5), child: Row( children: [ Text( l10n.video_subtitle, style: Theme.of(context) .textTheme .bodyLarge! .copyWith( color: Colors.white, fontWeight: FontWeight.bold, fontSize: 20), ), ], ), ), const Padding( padding: EdgeInsets.symmetric(vertical: 5)), _videoSubtitle(context) ], ), ), ), Container( color: Colors.white, width: 0.2, height: context.mediaHeight(1)), Expanded( child: SingleChildScrollView( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Padding( padding: const EdgeInsets.only( top: 8, left: 12, bottom: 5), child: Row( children: [ Text( l10n.video_audio, style: Theme.of(context) .textTheme .bodyLarge! .copyWith( color: Colors.white, fontWeight: FontWeight.bold, fontSize: 20), ), ], ), ), const Padding( padding: EdgeInsets.symmetric(vertical: 5)), _videoAudios(context) ], ), ), ) ], )), ), )); _player.play(); } Widget _videoSubtitle(BuildContext context) { List videoSubtitle = _player.state.tracks.subtitle .toList() .map((e) => VideoPrefs(isLocal: true, subtitle: e)) .toList(); SubtitleTrack? subtitle; List subs = []; if (widget.videos.isNotEmpty && !widget.isLocal) { for (var video in widget.videos) { for (var sub in video.subtitles ?? []) { if (!subs.contains(sub.file)) { videoSubtitle.add(VideoPrefs( isLocal: false, subtitle: SubtitleTrack.uri(sub.file!, title: sub.label, language: sub.label))); subs.add(sub.file!); } } } } if (widget.isLocal) { subtitle = _player.state.track.subtitle; } else { try { subtitle = _subtitle.value; } catch (_) {} } videoSubtitle = videoSubtitle .map((e) { VideoPrefs vid = e; vid.title = vid.subtitle?.title ?? vid.subtitle?.language ?? vid.subtitle?.channels ?? ""; return vid; }) .toList() .where((element) => element.title!.isNotEmpty) .toList(); videoSubtitle.sort((a, b) => a.title!.compareTo(b.title!)); videoSubtitle.insert( 0, VideoPrefs(isLocal: false, subtitle: SubtitleTrack.no())); return Column( children: videoSubtitle.toSet().toList().map((sub) { final selected = subtitle != null && sub.subtitle == subtitle; return GestureDetector( onTap: () { Navigator.pop(context); try { _player.setSubtitleTrack(sub.subtitle!); if (!widget.isLocal) _subtitle.value = sub.subtitle; } catch (_) {} }, child: Row( children: [ Padding( padding: const EdgeInsets.symmetric(horizontal: 20), child: Icon( Icons.check, color: selected ? Colors.white : Colors.transparent, ), ), Expanded( child: Text( sub.title ?? sub.subtitle?.title ?? sub.subtitle?.language ?? sub.subtitle?.channels ?? "None", style: Theme.of(context).textTheme.bodyLarge!.copyWith( fontSize: 16, color: selected ? Colors.white : Colors.white.withOpacity(0.6)), maxLines: 1, overflow: TextOverflow.ellipsis, ), ), ], ), ); }).toList(), ); } Widget _videoAudios(BuildContext context) { List videoAudio = _player.state.tracks.audio .toList() .map((e) => VideoPrefs(isLocal: true, audio: e)) .toList(); AudioTrack? audio; List audios = []; if (widget.videos.isNotEmpty && !widget.isLocal) { for (var video in widget.videos) { for (var audio in video.audios ?? []) { if (!audios.contains(audio.file)) { videoAudio.add(VideoPrefs( isLocal: false, audio: AudioTrack.uri(audio.file!, title: audio.label, language: audio.label))); audios.add(audio.file!); } } } } if (widget.isLocal) { audio = _player.state.track.audio; } else { try { audio = _audio.value; } catch (_) {} } videoAudio = videoAudio .map((e) { VideoPrefs vid = e; vid.title = vid.audio?.title ?? vid.audio?.language ?? vid.audio?.channels ?? ""; return vid; }) .toList() .where((element) => element.title!.isNotEmpty) .toList(); videoAudio.sort((a, b) => a.title!.compareTo(b.title!)); videoAudio.insert( 0, VideoPrefs(isLocal: false, subtitle: SubtitleTrack.no())); return Column( children: videoAudio.toSet().toList().map((aud) { final selected = audio != null && aud.audio == audio; return GestureDetector( onTap: () { Navigator.pop(context); try { _player.setAudioTrack(aud.audio!); if (!widget.isLocal) _audio.value = aud.audio; } catch (_) {} }, child: Row( children: [ Padding( padding: const EdgeInsets.symmetric(horizontal: 20), child: Icon( Icons.check, color: selected ? Colors.white : Colors.transparent, ), ), Expanded( child: Text( aud.title ?? aud.audio?.title ?? aud.audio?.language ?? aud.audio?.channels ?? "None", style: Theme.of(context).textTheme.bodyLarge!.copyWith( fontSize: 16, color: selected ? Colors.white : Colors.white.withOpacity(0.6)), maxLines: 1, overflow: TextOverflow.ellipsis, ), ), ], ), ); }).toList(), ); } Future _setPlaybackSpeed(double speed) async { await _player.setRate(speed); _playbackSpeed.value = speed; } void _togglePlaybackSpeed() { List allowedSpeeds = [0.25, 0.5, 0.75, 1.0, 1.25, 1.50, 1.75, 2.0]; if (allowedSpeeds.indexOf(_playbackSpeed.value) < allowedSpeeds.length - 1) { _setPlaybackSpeed( allowedSpeeds[allowedSpeeds.indexOf(_playbackSpeed.value) + 1]); } else { _setPlaybackSpeed(allowedSpeeds[0]); } } Future _changeFitLabel(WidgetRef ref) async { List fitList = [ BoxFit.contain, BoxFit.cover, BoxFit.fill, BoxFit.fitHeight, BoxFit.fitWidth, BoxFit.none ]; _showFitLabel.value = true; BoxFit? fit; if (fitList.indexOf(_fit.value) < fitList.length - 1) { fit = fitList[fitList.indexOf(_fit.value) + 1]; } else { fit = fitList[0]; } _fit.value = fit; _key.currentState?.update(fit: fit); BotToast.showText( onlyOne: true, align: const Alignment(0, 0.90), duration: const Duration(seconds: 1), text: fit.name.toUpperCase()); } Widget _seekToWidget() { final defaultSkipIntroLength = ref.watch(defaultSkipIntroLengthStateProvider); return Padding( padding: const EdgeInsets.symmetric(vertical: 5), child: SizedBox( height: 35, child: ElevatedButton( onPressed: () async { _tempPosition.value = Duration( seconds: defaultSkipIntroLength + _currentPosition.value.inSeconds); await _player.seek(Duration( seconds: _currentPosition.value.inSeconds + defaultSkipIntroLength)); _tempPosition.value = null; }, child: Padding( padding: const EdgeInsets.all(8.0), child: Text("+$defaultSkipIntroLength", style: const TextStyle(fontWeight: FontWeight.w100)), )), ), ); } Widget _mobileBottomButtonBar(BuildContext context) { return Padding( padding: const EdgeInsets.only(bottom: 30), child: Column( mainAxisAlignment: MainAxisAlignment.end, children: [ Padding( padding: const EdgeInsets.symmetric(horizontal: 8), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ _seekToWidget(), Row( children: [ IconButton( padding: const EdgeInsets.all(5), onPressed: () => _videoSettingDraggableMenu(context), icon: const Icon( Icons.video_settings, color: Colors.white, ), ), TextButton( child: ValueListenableBuilder( valueListenable: _playbackSpeed, builder: (context, value, child) { return Text( "${value}x", style: const TextStyle(color: Colors.white), ); }, ), onPressed: () { _togglePlaybackSpeed(); }), IconButton( icon: const Icon(Icons.fit_screen_outlined, color: Colors.white), onPressed: () async { _changeFitLabel(ref); }, ), ValueListenableBuilder( valueListenable: _enterFullScreen, builder: (context, snapshot, _) { return IconButton( onPressed: () { _setLandscapeMode(!snapshot); _enterFullScreen.value = !snapshot; }, icon: Icon(snapshot ? Icons.fullscreen_exit : Icons.fullscreen), iconSize: 25, color: Colors.white, ); }) ], ), ], ), ), ], ), ); } Widget _desktopBottomButtonBar(BuildContext context) { bool hasPrevEpisode = _streamController.getEpisodeIndex().$1 + 1 != _streamController .getEpisodesLength(_streamController.getEpisodeIndex().$2); bool hasNextEpisode = _streamController.getEpisodeIndex().$1 != 0; final skipDuration = ref.watch(defaultDoubleTapToSkipLengthStateProvider); return Column( mainAxisAlignment: MainAxisAlignment.end, children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row( children: [ if (hasPrevEpisode) IconButton( onPressed: () async { if (_isDesktop) { final isFullScreen = await windowManager.isFullScreen(); if (isFullScreen) { await setFullScreen(value: false); } } if (mounted) { pushReplacementMangaReaderView( context: context, chapter: _streamController.getPrevEpisode()); } }, icon: const Icon( Icons.skip_previous, color: Colors.white, ), ), CustomeMaterialDesktopPlayOrPauseButton( controller: _controller, ), SizedBox( height: 50, width: 50, child: IconButton( onPressed: () async { _tempPosition.value = Duration( seconds: skipDuration - _currentPosition.value.inSeconds); await _player.seek(Duration( seconds: _currentPosition.value.inSeconds - skipDuration)); _tempPosition.value = null; }, icon: Stack( children: [ const Positioned.fill( child: Icon( Icons.rotate_left_outlined, color: Colors.white, size: 30, ), ), Positioned.fill( child: Center( child: Padding( padding: const EdgeInsets.only(top: 2), child: Text( skipDuration.toString(), style: const TextStyle( fontSize: 9, color: Colors.white), ), )), ), ], ), ), ), SizedBox( height: 50, width: 50, child: IconButton( onPressed: () async { _tempPosition.value = Duration( seconds: skipDuration + _currentPosition.value.inSeconds); await _player.seek(Duration( seconds: _currentPosition.value.inSeconds + skipDuration)); _tempPosition.value = null; }, icon: Stack( children: [ const Positioned.fill( child: Icon( Icons.rotate_right_outlined, color: Colors.white, size: 30, ), ), Positioned.fill( child: Center( child: Padding( padding: const EdgeInsets.only(top: 2), child: Text( skipDuration.toString(), style: const TextStyle( fontSize: 9, color: Colors.white), ), )), ), ], ), ), ), if (hasNextEpisode) IconButton( onPressed: () async { if (_isDesktop) { final isFullScreen = await windowManager.isFullScreen(); if (isFullScreen) { await setFullScreen(value: false); } } if (mounted) { pushReplacementMangaReaderView( context: context, chapter: _streamController.getNextEpisode(), ); } }, icon: const Icon(Icons.skip_next, color: Colors.white), ), CustomMaterialDesktopVolumeButton( controller: _controller, ), ValueListenableBuilder( valueListenable: _tempPosition, builder: (context, value, child) => CustomMaterialDesktopPositionIndicator( delta: value, controller: _controller), ) ], ), Row( children: [ IconButton( onPressed: () => _videoSettingDraggableMenu(context), icon: const Icon( Icons.video_settings, color: Colors.white, ), ), TextButton( child: ValueListenableBuilder( valueListenable: _playbackSpeed, builder: (context, value, child) { return Text( "${value}x", style: const TextStyle(color: Colors.white), ); }, ), onPressed: () { _togglePlaybackSpeed(); }), IconButton( icon: const Icon(Icons.fit_screen_outlined, color: Colors.white), onPressed: () async { _changeFitLabel(ref); }, ), CustomMaterialDesktopFullscreenButton( controller: _controller, ) ], ), ], ), ], ); } Widget _topButtonBar(BuildContext context) { return Row( children: [ BackButton( color: Colors.white, onPressed: () async { if (_isDesktop) { final isFullScreen = await windowManager.isFullScreen(); if (isFullScreen) { setFullScreen(value: false); } else { if (mounted) { Navigator.pop(context); } } } else { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); if (mounted) { Navigator.pop(context); } } }, ), Flexible( child: ListTile( dense: true, title: SizedBox( width: context.mediaWidth(0.8), child: Text( widget.episode.manga.value!.name!, style: const TextStyle( fontWeight: FontWeight.bold, color: Colors.white), overflow: TextOverflow.ellipsis, ), ), subtitle: SizedBox( width: context.mediaWidth(0.8), child: Text( widget.episode.name!, style: TextStyle( fontSize: 12, fontWeight: FontWeight.w400, color: Colors.white.withOpacity(0.7)), overflow: TextOverflow.ellipsis, ), ), ), ), ], ); } void _resize(BoxFit fit) async { await Future.delayed(const Duration(milliseconds: 100)); if (mounted) { _key.currentState?.update( fit: fit, width: context.mediaWidth(1), height: context.mediaHeight(1)); } } Widget _videoPlayer(BuildContext context) { final fit = _fit.value; _resize(fit); return Stack( children: [ Video( subtitleViewConfiguration: const SubtitleViewConfiguration( style: TextStyle( fontSize: 50, fontWeight: FontWeight.bold, color: Colors.white, fontFamily: "", shadows: [Shadow(offset: Offset(0.2, 0.0), blurRadius: 7.0)], backgroundColor: Colors.transparent), ), fit: fit, key: _key, controls: (state) => _isDesktop ? DesktopControllerWidget( videoController: _controller, topButtonBarWidget: _topButtonBar(context), videoStatekey: _key, bottomButtonBarWidget: _desktopBottomButtonBar(context), streamController: _streamController, seekToWidget: Padding( padding: const EdgeInsets.symmetric(horizontal: 15), child: Row( children: [ _seekToWidget(), ], ), ), tempDuration: (value) { _tempPosition.value = value; }, ) : MobileControllerWidget( videoController: _controller, topButtonBarWidget: _topButtonBar(context), videoStatekey: _key, bottomButtonBarWidget: _mobileBottomButtonBar(context), streamController: _streamController, ), controller: _controller, width: context.mediaWidth(1), height: context.mediaHeight(1), resumeUponEnteringForegroundMode: true, ), Positioned( right: 0, bottom: 80, child: ValueListenableBuilder( valueListenable: _currentPosition, builder: (context, value, child) { if (_hasOpeningSkip || _hasEndingSkip) { if (_hasOpeningSkip) { if (_openingResult!.interval!.startTime!.ceil() <= value.inSeconds && _openingResult!.interval!.endTime!.toInt() > value.inSeconds) { _showAniSkipOpeningButton.value = true; _showAniSkipEndingButton.value = false; } else { _showAniSkipOpeningButton.value = false; } } if (_hasEndingSkip) { if (_endingResult!.interval!.startTime!.ceil() <= value.inSeconds && _endingResult!.interval!.endTime!.toInt() > value.inSeconds) { _showAniSkipEndingButton.value = true; _showAniSkipOpeningButton.value = false; } } else { _showAniSkipEndingButton.value = false; } } return Consumer(builder: (context, ref, _) { late final enableAniSkip = ref.watch(enableAniSkipStateProvider); late final enableAutoSkip = ref.watch(enableAutoSkipStateProvider); late final aniSkipTimeoutLength = ref.watch(aniSkipTimeoutLengthStateProvider); return ValueListenableBuilder( valueListenable: _showAniSkipOpeningButton, builder: (context, showAniSkipOpENINGButton, child) { return ValueListenableBuilder( valueListenable: _showAniSkipEndingButton, builder: (context, showAniSkipENDINGButton, child) { return showAniSkipOpENINGButton ? Container( key: const Key('skip_opening'), child: AniSkipCountDownButton( active: enableAniSkip, autoSkip: enableAutoSkip, timeoutLength: aniSkipTimeoutLength, skipTypeText: context.l10n.skip_opening, player: _player, aniSkipResult: _openingResult, )) : showAniSkipENDINGButton ? Container( key: const Key('skip_ending'), child: AniSkipCountDownButton( active: enableAniSkip, autoSkip: enableAutoSkip, timeoutLength: aniSkipTimeoutLength, skipTypeText: context.l10n.skip_ending, player: _player, aniSkipResult: _endingResult, )) : const SizedBox.shrink(); }, ); }, ); }); }, ), ), ], ); } @override Widget build(BuildContext context) { return Scaffold( body: WillPopScope( onWillPop: () async { SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: SystemUiOverlay.values); Navigator.pop(context); return false; }, child: _videoPlayer(context), ), ); } } Widget seekIndicatorTextWidget(Duration duration, Duration currentPosition) { final swipeDuration = duration.inSeconds; final value = currentPosition.inSeconds + swipeDuration; return Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( Duration(seconds: value).label(), style: const TextStyle( fontSize: 65.0, fontWeight: FontWeight.bold, color: Colors.white), ), Text( "[${swipeDuration > 0 ? "+${Duration(seconds: swipeDuration).label()}" : "-${Duration(seconds: swipeDuration).label()}"}]", style: const TextStyle( fontSize: 40.0, color: Colors.white, fontWeight: FontWeight.bold), ), ], ); } class VideoPrefs { String? title; VideoTrack? videoTrack; SubtitleTrack? subtitle; AudioTrack? audio; bool isLocal; final Map? headers; VideoPrefs( {this.videoTrack, this.isLocal = true, this.headers, this.subtitle, this.audio, this.title}); }