FadOne

Results 4 comments of FadOne

Found the issue: It happens only when there is a delay in displaying `Video(controller: controller)` after the player is ready. Code to reproduce: ``` import 'package:flutter/material.dart'; import 'package:media_kit/media_kit.dart'; import 'package:media_kit_video/media_kit_video.dart';...

> How do you get AudioTrack back with a 1? When I use playlists it is always null, whether I print video, audio or subtitle track ``` await _player.open( Media(videoFile.path),...

No, but the issue is related to calling `video.play()` on umuted video without user interaction on iOS: https://developer.apple.com/documentation/webkit/delivering-video-content-for-safari#Play-a-Video-in-Your-Webpage The muted videos are working: ```dart final player = Player(configuration: PlayerConfiguration(muted: true));...

What I do is get the original audio track from the video once its available by listening to the first stream after the player is opened. ```dart await _player.open(Media(videoFile.path,), play:...