We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8cc5f commit e79287bCopy full SHA for e79287b
README.md
@@ -1,12 +1,12 @@
1
# AVAssetResourceLoader-Video-Example
2
-Implementation of AVAssetResourceLoader custom class which can be useful while caching cideos while streaming
+Implementation of AVAssetResourceLoader custom class which can be useful while caching videos while streaming
3
4
## Usage
5
6
```
7
AVURLAsset *asset ;
8
assetLoader = [[AssetLoaderDelegate alloc] init];
9
-assetLoader.fileUrl = self.compilation.VideoUrl;
+assetLoader.fileUrl = self.videoURL ; //S3 url in this case
10
asset = [AVURLAsset URLAssetWithURL:[self url:[NSURL URLWithString:urlString] WithCustomScheme:@"streaming"] options:nil];
11
[asset.resourceLoader setDelegate:assetLoader queue:dispatch_get_main_queue()];
12
0 commit comments