Jan Nemeček

Results 8 comments of Jan Nemeček

Just get the local URL of the video and pass it to the Player instance ``` let player = Player() player.url = Bundle.main.url(forResource: "example", withExtension: "mp4") player.playFromBeginning() ```

This should be resolved by https://github.com/piemonte/Player/pull/238

@baoluo any updates on this?

Did you end up solving this? We're in a similar spot right now trying to work around this issue.

I don't see this method. Is this in the latest release? I see it mentioned in https://github.com/joelekstrom/JEKScrollableSectionCollectionViewLayout/pull/18 but that hasn't been merged yet @joelekstrom

Seems to be a trivial change. I will get a PR submitted if @michalkonturek wants to take a look at it.

The `preload` function doesn't take `AssetOptionsProviding` into account the same way regular `load` works. This is necessary in case we need to play links that require authentication. Preload should be...