DVAssetLoaderDelegate
DVAssetLoaderDelegate copied to clipboard
Loader delegate for caching AVURLAsset
I have come across an instance where a 3rd party library impacted the resource loading mechanism. Specifically, I was using the library [FirebasePerformance](https://firebase.google.com/docs/perf-mon/get-started-ios). When this library is installed next to...
Hello! iOS 13 / pod 'DVAssetLoaderDelegate' / using either DVURLAsset(url: originUrl) or AVURLAsset(url: customSchemeUrl) + setting DVAssetLoaderDelegate(url: originUrl) or any other playing with url scheme leads to this error: Task...
Hi, I'd recommend to make a such or like this change: inside the DVAssetLoaderDelegate.m change ``` - (NSData *)subdataFromData:(NSData *)data forRequest:(NSURLRequest *)request response:(NSHTTPURLResponse *)response loadingRequest:(AVAssetResourceLoadingRequest *)loadingRequest { NSString *requestRange =...
Hi , Is there support for First play from cache data . If the some data or complete data available then first it should play it and then after through...
Dear, first, thank you so much for this library. It worked well with audio files, but now, I'm experiencing the follow error with HLS video: ``` 2019-05-03 09:47:13.559307-0300 DVAssetLoaderDelegate_Example[2277:686162] Task...
`DVURLAsset` times out for the urls with redirect Example: ``` let url = URL(string:"") // URL with 302 redirect let asset = DVURLAsset(url: url) asset.loaderDelegate = self ... asset.loadValuesAsynchronously(forKeys: ["playable"])...