Open
Description
Describe the bug
the seek doesnt pause the video,
i seek (outside of the buffered range)
the video keeps playing
then it decides to seek and buffer
and that delay is random
Expected behavior
seek the video pauses until it gets buffered in the seeked position
Log
Add
import 'package:logging/logging.dart';
import 'package:intl/intl.dart';
add the following lines before registerWith()
Logger.root.level = Level.ALL;
final df = DateFormat("HH:mm:ss.SSS");
Logger.root.onRecord.listen((record) {
print('${record.loggerName}.${record.level.name}: ${df.format(record.time)}: ${record.message}');
});