yaroslavlvov
yaroslavlvov
Update CHANGELOG.md file * Your punchline must be under a category in the [X.X.X] section * If the [X.X.X] not exist, create it above the last release section * Try...
provide a way to set player.automaticallyWaitsToMinimizeStalling through configuration https://github.com/noreasonprojects/ModernAVPlayer/issues/198
currently ```player.automaticallyWaitsToMinimizeStalling``` is set to false in init state, would be nice to be able to change this with configuration
Reloading Item internally is causing limitations for consumers: 1. If playback url has a lifetime I need to get new url and reload with that one 2. Some SDKs are...
Sometimes there are cases where you need precise seeking which is called like this ``` player.seek(to: CMTime(seconds: 100, preferredTimescale: CMTimeScale(NSEC_PER_SEC)), toleranceBefore: .zero, toleranceAfter: .zero) ```  - Want to provide something like this Subtitles ```var currentSelectedSubtitle: ModernSubtitle { get }``` ```getAvailableSubtitles() -> [ModernSubtitle]``` ```selectSubtitle(ModernSubtitle)``` AudioTacks ```var currentSelectedAudioTrack: ModernAudioTrack {...