Canardoux / flutter_sound

Flutter plugin for sound. Audio recorder and player.
Mozilla Public License 2.0
868 stars 568 forks source link

[BUG]: Recording progress after resume recording decreases from random time instead of increasing #929

Open dizzersee opened 2 years ago

dizzersee commented 2 years ago

Flutter Sound Version : 9.2.13

|-- flutter_sound 9.2.13
|   |-- flutter_sound_platform_interface 9.2.13
|   |-- flutter_sound_web 9.2.13
|   |   |-- flutter_sound_platform_interface...

Severity

Platforms you faced the error

Describe the bug When I pause and resume the recorder, the progress time jumps to somewhere between 1 and 4 secs, then decreases back to 0 secs, and then increases again, instead of just continuing to increase form where it was before the pause.

The recording itself is made correctly - if I playback it, the pauses and length are correct.


Logs!!!!

Nothing special is put to logs


My code snippets:

 _recordingTimeSubscription = BlocProvider.of<AudioCubit>(context)
        .recorder!
        .onProgress!
        .listen((RecordingDisposition e) {
      setState(() {
        recordingDuration = e.duration;
      });
    });

    await BlocProvider.of<AudioCubit>(context)
        .recorder
        ?.setSubscriptionDuration(
          const Duration(milliseconds: 30),
        );
sawamotokai commented 1 year ago

I have the same bug.

hagiosolat commented 1 year ago

I have the same bug

wbin-dev commented 1 year ago

Same bug

ShubhamTariyal commented 1 year ago

Its more clear and effective to upvote/like the question if you face the same issue Instead of commenting the same which leads to cluttering in chat.

ShubhamTariyal commented 1 year ago

I am loading audio from url and on starting player it causes this issue: the position received goes like this 0->0.xx->1.xx->5.xx-> 1.xx -> 2.xx....4.xx->0.xx.... where xx is some decimal value.

Issue in emulator not tested in real device.

pubspec.yaml flutter_sound: ^9.2.13

code:

  bool isLoading = true;
  bool isPlaying = false;
  bool playedFirstTime = false;
  bool isPlayerOpened = false;
  Duration position = Duration.zero;
  Duration duration = Duration.zero;
  late StreamSubscription<PlaybackDisposition>? streamSubscription;
  @override
  void initState() {
    super.initState();
    initPlayer();
  }

  @override
  void dispose() {
    try {
      if (isPlayerOpened) {
        Future.microtask(() async => await player.closePlayer());
      }
      streamSubscription?.cancel();
    } catch (_) {}
    super.dispose();
  }

  Future<void> initPlayer() async {
    await player.openPlayer();
    isPlayerOpened = true;
    await player.setSubscriptionDuration(const Duration(milliseconds: 10));
    streamSubscription = player.onProgress?.listen((event) {
      setState(() {
        duration = event.duration;
        position =
            event.position > event.duration ? event.duration : event.position;
      });
    });
    setState(() {
      isLoading = false;
    });
  }

  Future<void> playAudio({required String url}) async {
    await player.startPlayer(
      fromURI: url,
      // codec: Codec.mp3,
      whenFinished: () => setState(() {
        isPlaying = false;
        isPlayerOpened = false;
        position = Duration.zero;
        player.seekToPlayer(position);
      }),
    );
    setState(() {
      isPlaying = true;
      playedFirstTime = true;
    });
  }

  Future<void> pauseAudio() async {
    await player.pausePlayer();
    setState(() {
      isPlaying = false;
    });
  }

  Future<void> resumeAudio() async {
    await player.resumePlayer();
    setState(() {
      isPlaying = true;
    });
  }
...
// Widget with slider and timer
                Row(
                    mainAxisSize: MainAxisSize.min,
                    children: [
                      Text(
                        '$minutes:$seconds',
                        style: simpleText(fontSize: widget.fontSize),
                      ),
                      SizedBox(
                        width: widget.spacing,
                      ),
                      Expanded(
                        child: SliderTheme(
                          data: SliderThemeData(
                            overlayShape: SliderComponentShape.noOverlay,
                          ),
                          child: Slider(
                            value: position.inMilliseconds.toDouble(),
                            min: 0.0,
                            max: duration.inMilliseconds.toDouble(),
                            onChangeStart: (double value) {
                              // player.pausePlayer();
                              if (isPlayerOpened) {
                                pauseAudio();
                              }
                            },
                            onChangeEnd: seek,
                            onChanged: (double value) {
                              setState(() {
                                position =
                                    Duration(milliseconds: value.floor());
                              });
                              if (isPlayerOpened) {
                                resumeAudio();
                              }
                            },
                            activeColor: widget.themeColor,
                            inactiveColor: widget.themeColor.withOpacity(0.3),
                          ),
                        ),
                      ),
                      Text(
                        '$durationMinutes:$durationSeconds',
                        style: simpleText(fontSize: widget.fontSize),
                      ),
                    ],
                  ),
...

Log:

D/EGL_emulation( 5615): app_time_stats: avg=16.57ms min=2.35ms max=38.81ms count=50 D/EGL_emulation( 5615): app_time_stats: avg=23.76ms min=3.49ms max=78.48ms count=42 D/EGL_emulation( 5615): app_time_stats: avg=24.51ms min=9.01ms max=69.10ms count=43 D/EGL_emulation( 5615): app_time_stats: avg=15.57ms min=7.69ms max=23.20ms count=59 I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 new FlutterSoundPlayer (package:flutter_sound/public/flutter_sound_player.dart:132:13) I/flutter ( 5615): │ #1 new _AudioPlayerState (package:chatezy/common/widgets/new_feed_widget.dart:621:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ctor: FlutterSoundPlayer() I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._openAudioSession (package:flutter_sound/public/flutter_sound_player.dart:511:13) I/flutter ( 5615): │ #1 FlutterSoundPlayer.openPlayer. (package:flutter_sound/public/flutter_sound_player.dart:504:17) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> openAudioSession I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:00.000000----- I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 new FlutterSoundPlayer (package:flutter_sound/public/flutter_sound_player.dart:132:13) I/flutter ( 5615): │ #1 new _AudioPlayerState (package:chatezy/common/widgets/new_feed_widget.dart:621:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ctor: FlutterSoundPlayer() I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._openAudioSession (package:flutter_sound/public/flutter_sound_player.dart:511:13) I/flutter ( 5615): │ #1 FlutterSoundPlayer.openPlayer. (package:flutter_sound/public/flutter_sound_player.dart:504:17) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> openAudioSession I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:00.000000----- I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 new FlutterSoundPlayer (package:flutter_sound/public/flutter_sound_player.dart:132:13) I/flutter ( 5615): │ #1 new _AudioPlayerState (package:chatezy/common/widgets/new_feed_widget.dart:621:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ctor: FlutterSoundPlayer() I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._openAudioSession (package:flutter_sound/public/flutter_sound_player.dart:511:13) I/flutter ( 5615): │ #1 FlutterSoundPlayer.openPlayer. (package:flutter_sound/public/flutter_sound_player.dart:504:17) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> openAudioSession I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:00.000000----- I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.openPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:194:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:96:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ---> openPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.openPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:209:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:96:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 <--- openPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._openAudioSession (package:flutter_sound/public/flutter_sound_player.dart:542:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- openAudioSession I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.setSubscriptionDuration (package:flutter_sound/public/flutter_sound_player.dart:677:13) I/flutter ( 5615): │ #1 _AudioPlayerState.initPlayer (package:chatezy/common/widgets/new_feed_widget.dart:649:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> setSubscriptionDuration I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.openPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:194:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:96:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ---> openPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.openPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:209:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:96:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 <--- openPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._openAudioSession (package:flutter_sound/public/flutter_sound_player.dart:542:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- openAudioSession I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.setSubscriptionDuration (package:flutter_sound/public/flutter_sound_player.dart:677:13) I/flutter ( 5615): │ #1 _AudioPlayerState.initPlayer (package:chatezy/common/widgets/new_feed_widget.dart:649:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> setSubscriptionDuration I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.openPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:194:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:96:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ---> openPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.openPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:209:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:96:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 <--- openPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._openAudioSession (package:flutter_sound/public/flutter_sound_player.dart:542:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- openAudioSession I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.setSubscriptionDuration (package:flutter_sound/public/flutter_sound_player.dart:677:13) I/flutter ( 5615): │ #1 _AudioPlayerState.initPlayer (package:chatezy/common/widgets/new_feed_widget.dart:649:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> setSubscriptionDuration I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.setSubscriptionDuration (package:flutter_sound/public/flutter_sound_player.dart:685:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<---- setSubscriptionDuration I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.setSubscriptionDuration (package:flutter_sound/public/flutter_sound_player.dart:685:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<---- setSubscriptionDuration I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.setSubscriptionDuration (package:flutter_sound/public/flutter_sound_player.dart:685:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<---- setSubscriptionDuration I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:00.000000----- I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:00.000000----- I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:00.000000----- D/EGL_emulation( 5615): app_time_stats: avg=17.50ms min=2.87ms max=69.97ms count=50 D/EGL_emulation( 5615): app_time_stats: avg=21.00ms min=3.31ms max=39.53ms count=48 D/EGL_emulation( 5615): app_time_stats: avg=20.35ms min=10.45ms max=35.53ms count=50 D/EGL_emulation( 5615): app_time_stats: avg=21.52ms min=9.44ms max=39.55ms count=48 D/EGL_emulation( 5615): app_time_stats: avg=23.57ms min=9.66ms max=58.80ms count=43 I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._startPlayer (package:flutter_sound/public/flutter_sound_player.dart:779:13) I/flutter ( 5615): │ #1 FlutterSoundPlayer.startPlayer. (package:flutter_sound/public/flutter_sound_player.dart:759:17) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> startPlayer I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._stop (package:flutter_sound/public/flutter_sound_player.dart:1099:13) I/flutter ( 5615): │ #1 FlutterSoundPlayer._startPlayer (package:flutter_sound/public/flutter_sound_player.dart:806:11) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> _stop I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.stopPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:296:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:113:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ---> stopPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.stopPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:311:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:113:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 <--- stopPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._stop (package:flutter_sound/public/flutter_sound_player.dart:1126:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- _stop I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── V/MediaHTTPService( 5615): MediaHTTPService(android.media.MediaHTTPService@7304183): Cookies: null V/MediaHTTPService( 5615): makeHTTPConnection: CookieHandler (java.net.CookieManager@4d479b3) exists. V/MediaHTTPService( 5615): makeHTTPConnection(android.media.MediaHTTPService@7304183): cookieHandler: java.net.CookieManager@4d479b3 Cookies: null D/TrafficStats( 5615): tagSocket(96) with statsTag=0xffffffff, statsUid=-1 D/EGL_emulation( 5615): app_time_stats: avg=15.65ms min=2.95ms max=91.18ms count=53 D/EGL_emulation( 5615): app_time_stats: avg=18.48ms min=9.16ms max=39.55ms count=56 I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._startPlayer (package:flutter_sound/public/flutter_sound_player.dart:831:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- startPlayer I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.log (package:flutter_sound/public/flutter_sound_player.dart:360:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:137:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 mediaPlayer prepared and started I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.startPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:277:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:106:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ---> startPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.startPlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:289:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:106:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 <--- startPlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.000000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.055000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.055000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.055000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.065000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.085000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.095000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.116000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.138000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=20.05ms min=12.48ms max=37.42ms count=50 I/flutter ( 5615): -----position: 0:00:00.147000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.168000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.220000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.254000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.264000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.286000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.296000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.318000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.339000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.350000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.370000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.381000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.401000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.412000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.433000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.454000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.464000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.484000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.505000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.515000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.536000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.547000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.567000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.620000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.631000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.651000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.662000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.683000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.705000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.715000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.736000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.747000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.767000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.788000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.798000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.819000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.829000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.850000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.871000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.881000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.902000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.922000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.933000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.946000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.965000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.986000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.996000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.017000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.038000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.048000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.068000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.079000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.120000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.132000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=17.57ms min=8.78ms max=38.32ms count=54 I/flutter ( 5615): -----position: 0:00:01.153000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.164000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.195000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.230000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.280000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.333000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.363000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.395000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.438000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.470000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.502000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.512000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.534000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.553000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.564000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.595000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.616000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.637000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.647000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.668000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.679000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.701000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.721000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.731000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.752000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.762000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.783000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.804000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.814000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.834000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.854000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.864000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.884000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.905000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.916000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.936000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.947000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.968000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.988000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.998000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.020000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.030000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.050000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.070000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.081000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.101000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.122000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.133000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.153000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=15.34ms min=6.08ms max=53.72ms count=49 I/flutter ( 5615): -----position: 0:00:02.164000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.184000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.204000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.215000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.235000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.245000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.267000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.287000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.298000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.318000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.339000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.349000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.370000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.381000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.402000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.412000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.433000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.454000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.464000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.486000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.497000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.517000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.538000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.548000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.568000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.589000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.599000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.620000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.631000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.651000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.672000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.682000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.704000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.714000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.735000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.776000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.796000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.817000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.838000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.848000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.869000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.879000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.900000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.911000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.934000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.955000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.966000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.986000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.997000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.018000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.038000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.049000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.069000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.080000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.100000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.120000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.130000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.150000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.161000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=11.74ms min=4.16ms max=37.11ms count=59 I/flutter ( 5615): -----position: 0:00:03.182000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.204000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.235000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.255000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.265000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.287000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.297000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.318000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.339000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.350000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.371000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.382000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.402000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.422000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.433000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.454000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.464000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.484000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.495000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.516000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.538000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.548000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.569000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.579000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.600000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.621000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.632000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.652000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.663000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.684000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.695000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.716000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.737000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.748000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.769000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.779000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.800000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.821000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.832000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.852000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.863000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.883000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.905000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.915000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.937000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.947000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.967000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.988000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.999000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.019000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.030000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.050000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.072000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.082000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.103000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.114000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.134000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.155000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.165000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.186000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=16.67ms min=11.22ms max=22.70ms count=60 I/flutter ( 5615): -----position: 0:00:04.196000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.217000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.239000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.249000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.269000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.301000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.322000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.332000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.353000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.363000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.384000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.395000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.416000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.437000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.447000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.468000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.489000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.499000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.520000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.531000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.552000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.562000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.583000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.605000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.615000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.636000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.656000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.254000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.275000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.285000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.306000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.327000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.338000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.358000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.368000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.389000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.409000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.420000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.440000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.450000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.472000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.483000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.505000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.526000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.537000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.559000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.570000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.590000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.600000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.621000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.642000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.652000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.674000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.684000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.708000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.719000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.739000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.760000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.770000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=12.66ms min=5.62ms max=28.91ms count=59 I/flutter ( 5615): -----position: 0:00:00.791000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.801000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.820000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.842000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.853000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.874000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.884000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.905000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.916000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.937000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.958000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.968000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:00.989000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.001000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.022000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.042000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.053000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.074000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.084000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.104000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.124000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.135000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.155000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.166000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.187000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.208000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.219000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.240000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.250000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.271000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.293000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.303000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.325000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.334000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.355000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.366000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.387000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.408000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.418000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.440000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.450000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.472000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.492000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.502000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.523000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.534000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.554000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.564000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.595000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.605000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.616000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.637000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.659000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.669000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.690000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.700000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.722000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.742000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.753000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.773000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=8.88ms min=5.32ms max=19.20ms count=60 I/flutter ( 5615): -----position: 0:00:01.784000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.804000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.825000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.836000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.857000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.868000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.888000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.908000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.919000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.950000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.971000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:01.992000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.003000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.024000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.043000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.053000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.075000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.085000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.106000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.126000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.136000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.156000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.167000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.188000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.209000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.219000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.241000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.251000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.272000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.294000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.304000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.324000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.345000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.354000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.375000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.386000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.407000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.427000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.438000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.458000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.468000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.489000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.510000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.520000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.540000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.550000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.571000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.591000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.602000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.623000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.643000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.704000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.724000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.735000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.756000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.776000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.786000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=13.38ms min=5.78ms max=22.89ms count=57 I/flutter ( 5615): -----position: 0:00:02.807000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.817000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.837000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.858000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.869000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.889000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.909000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.920000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.940000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.951000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.971000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:02.993000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.003000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.023000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.043000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.054000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.074000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.085000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.105000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.126000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.136000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.157000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.168000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.189000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.210000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.220000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.240000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.250000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.272000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.303000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.315000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.335000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.368000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.388000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.409000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.419000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.440000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.451000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.471000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.492000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.503000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.523000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.544000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.554000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.574000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.585000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.605000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.626000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.636000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.657000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.667000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.690000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.700000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.721000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.741000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.752000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.774000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.784000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.806000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=13.65ms min=5.70ms max=28.23ms count=59 I/flutter ( 5615): -----position: 0:00:03.817000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.838000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.860000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.871000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.892000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.902000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.922000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.942000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.953000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.974000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:03.985000, duration: 0:00:27.252000----- I/flutter ( 5615): -----position: 0:00:04.006000, duration: 0:00:27.252000----- I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.pausePlayer (package:flutter_sound/public/flutter_sound_player.dart:1139:13) I/flutter ( 5615): │ #1 _AudioPlayerState.pauseAudio (package:chatezy/common/widgets/new_feed_widget.dart:680:18) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> pausePlayer I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._pausePlayer (package:flutter_sound/public/flutter_sound_player.dart:1147:13) I/flutter ( 5615): │ #1 FlutterSoundPlayer.pausePlayer. (package:flutter_sound/public/flutter_sound_player.dart:1141:13) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:---> _pausePlayer I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:04.026000, duration: 0:00:27.252000----- I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.pausePlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:239:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:119:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 ---> pausePlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.pausePlayerCompleted (package:flutter_sound/public/flutter_sound_player.dart:251:13) I/flutter ( 5615): │ #1 MethodChannelFlutterSoundPlayer.channelMethodCallHandler (package:flutter_sound_platform_interface/method_channel_flutter_sound_player.dart:119:19) I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 <--- pausePlayerCompleted: true I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer._pausePlayer (package:flutter_sound/public/flutter_sound_player.dart:1170:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- _pausePlayer I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): │ #0 FlutterSoundPlayer.pausePlayer (package:flutter_sound/public/flutter_sound_player.dart:1143:13) I/flutter ( 5615): │ #1 I/flutter ( 5615): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ I/flutter ( 5615): │ 🐛 FS:<--- pausePlayer I/flutter ( 5615): └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── I/flutter ( 5615): -----position: 0:00:04.038000, duration: 0:00:27.252000----- D/EGL_emulation( 5615): app_time_stats: avg=13.63ms min=4.79ms max=42.56ms count=56

mshahjahan-mufin commented 1 year ago

I am also facing this issue, one thing I noticed it stores the time between pause and resume and that time is shown on the duration Stream. Let's say you took a pause of 10 seconds then the timer resets and it starts from 0 - (time for the pause). And as a result, the timer will start from 00:-10 next time.

prameshbajra commented 1 year ago

Maybe these are the same issue.

github-actions[bot] commented 9 months ago

This issue is stale because it has been open 90 days with no activity. Leave a comment or this will be closed in 7 days.

mr-jagdish-pu commented 5 months ago

I am facing same issue.