FairPlay Streaming

RSS for tag

Securely deliver streaming media to devices through the HTTP Live Streaming protocol using FairPlay Streaming (FPS).

Posts under FairPlay Streaming tag

199 Posts

Post

Replies

Boosts

Views

Activity

iOS15 + Fairplay + DRM + AppleTV
Hi, I have a video streaming application and a part of code which use FairPlay + DRM. Im trying stream DRN content on appletv and It works well on iOS 13, but on iOS 15 i see nothing and catch internal player error: Error Domain=AVFoundationErrorDomain Code=-11870 "Operation failed" UserInfo={NSLocalizedFailureReason=An unknown error has occurred (808), NSLocalizedDescription=Operation failed, NSUnderlyingError=0x283902700 {Error Domain=NSOSStatusErrorDomain Code=808 "(null)"}}
0
0
860
Mar ’22
Live FairPlay and WebVTT
I've been maintaining adaptive HLS+FairPlay streams with audio and video for years. My implementation works great. However, I'm now also implementing captions or subtitles, and I'm having trouble with the later. I'm actually able to generate my HLS streams with WebVTT subtitles, and they work great. But as soon as I encrypt the streams, Apple players stop working (forever stall). And my fairplay implementation works perfectly when no subtitles are involved. I'm not encrypting the webvtt chunks: they travel as plain text, as stated in Apple guidelines. I believe this may be the issue: encrypted a/v streams with an unencrypted subtitles stream. However, encrypting plain text subtitles with SAMPLE-AES has no sense to me, so far I was unable to find a single HLS example online with subtitles that also happen to have FairPlay encryption. All documents I have about FairPlay also say nothing about this, I've also tried applying CEA-608 closed captions in the video stream, and this actually works great with FairPlay. But CEA-608 has its own issues, and so I would like to migrate that tech to WebVTT: which also works great, except when FairPlay is involved. I understand that Apple also establishes that I could use TTML (ISMC1) inside fMP4, which I suspect may be SAMPLE-AES encryptable. However, given my customers use cases, I need to use TS format for HLS, and so I can't use fMP4. With all this in mind, do anybody know how to properly configure HLS+FairPlay with a plain text WebVTT subtitles stream? Please note this is about live streaming, and not VOD nor offline playback. Thanks.
3
0
1.8k
Feb ’22
HLS stream download getting stuck
Trying to download an encrypted HLS stream we faced the following issue: When we start a new download, calling resume() function of AVAssetDownloadTask, the download process gets stuck (not every time) and neither of urlSession(_:assetDownloadTask:didFinishDownloadingTo:) or urlSession(_:task:didCompleteWithError:) delegate functions (AVAssetDownloadDelegate) are getting called. There are cases where not even the urlSession(_:assetDownloadTask:didLoad:totalTimeRangesLoaded:timeRangeExpectedToLoad:) delegate function is getting called. Any suggestions on how to troubleshoot?
2
0
1.8k
Feb ’22
IOS 15 Safari fails with Fairplay DRM playback
Hi, IOS 15 Safari does not support Fairplay DRM and gives an error, other browsers like Chrome also do not work. Since IOS 15 released today, we as DRM providers are having a lot of complaints from our customers. The issue does not happen on IOS app, only for IOS browser. We have seen the same issue across multiple DRM providers, so issue is at the end of Apple and only occurs for IOS 15.
18
0
16k
Jan ’22
Fiarplay - I can't play DRM protected HLS contents
I am encoding CMAF contents and when I try to stream a DRM'd video on Safari, nothing happens and I don't even have an error code. It is working without any problem on Chrome (widevine). Our partners can stream the content on their side but we can't, on Macbook or iPhone... We have tested CMAF on the following iOS versions on various device types (phones and tablets): .3 .1 .1 .1 • 14 • 14.3 It was working without any problem. We had an issue on: Macbook pro M1 - Big Sur 11.3.1 Safari Version 14.1 (16611.1.21.161.6) iPhone 12.- iOS 14.5.1 Iphone 12. - iOS 14.4.2 Macbook Air Intel 2020 - Big Sur 11.2.3 Sometimes, it is working when I reload the page ... I don't know what happens...
1
0
1.6k
Nov ’21
Bug? Playback fails on iOS v15 Beta + Safari + FairPlay Streaming
Playbacking FPS content on iOS v15 Beta + Safari fails even if key request succeeds. I've used Shaka player and other HTML5 players which ends in the same result. Although, when trying it on AVPlayer, playback succeeds so I guess there is some problem in Safari or somewhere. Is it a bug and will it be fixed before release? By the way iOS v14 + Safari + FPS works with no problem.
3
0
2.1k
Oct ’21
Problem with webkitneedkey
Hello!Well, I am trying to get the apple fairplay demo working for safari.My manifest#EXT-X-SESSION-KEY:METHOD=AES-128,URI="XXXXXXXXX"#EXT-X-STREAM-INF:BANDWIDTH=53000,CODECS="mp4a.40.5"hls-audio=49152.m3u8And I have a method waiting for the event webkitneedkey but it is not being called. video.addEventListener('webkitneedkey', onneedkey, false);Why? What is the problem?
2
0
2.2k
Oct ’21
Is there any ETA when AVAssetDownloadTask will be available for watchOS
I am running a spike for apple watches and one of the things that I'm evaluating now is the capability to play HLS + fairplay content offline. It seems like the only way forward is by using AVAssetDownloadTask, which is not available on watchOS. So, my question is if there is any plan to release this capability to apple watches soon or if there is any other way to do that.
1
0
772
Oct ’21
I got an error NSOSStatusErrorDomain -66681 with iOS 13.4
Hi all~!I got an error code -66681 when AVPlayer starts playing, after I updated iOS version to 13.4.When I checked it on osstatus.com, it named 'kAudioQueueErr_CannotStart' from AudioToolBox.framwork.However I have no any clue what it means.Order versions have no issue. It works perfectly.FYI, I set signed cookies to AVURLAsset and it works with non-drm videos.let cookies = cookieInfo.map { HTTPCookie.cookies(withResponseHeaderFields: ["Set-Cookie": "\($0.key)=\($0.value)"], for: url) }.flatMap { $0 } asset = AVURLAsset(url: url, options: [AVURLAssetHTTPCookiesKey : cookies])Issue occures with only drm videos.Could anybody give me some advice about this?
1
0
1k
Sep ’21
HLS AVPlayer modify master manifest
Hi, I am using AVPLayer for play HLS video(live, vod). Is there any possibility to modify master manifest on the fly? The goal to remove some of variants from the playlist. Example: We have master manifest which contains several variants: #EXTM3U #EXT-X-STREAM-INF:BANDWIDTH=150000,RESOLUTION=416x234,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/low/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=240000,RESOLUTION=416x234,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/lo_mid/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=440000,RESOLUTION=416x234,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/hi_mid/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=640000,RESOLUTION=640x360,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/high/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=64000,CODECS="mp4a.40.5" http://example.com/audio/index.m3u8 And I want dynamically remove all variants except the last and have in the result: #EXTM3U #EXT-X-STREAM-INF:BANDWIDTH=64000,CODECS="mp4a.40.5" http://example.com/audio/index.m3u8 Thanks in advance for any help! PS: URLProtocol doesn't suitable for this https://developer.apple.com/forums/thread/75328
2
0
2.9k
Sep ’21
AVAssetDownloadURLSession ignores HTTP cache
Trying to download an encrypted HLS stream we faced the following behaviour: Setting requestCachePolicy and/or urlCache properties of URLSessionConfiguration that used to create the AVAssetDownloadURLSession seems to have no effect at all. In our application the user can add multiple encrypted HLS streams at a queue. Before adding them in queue, we make sure that the manifest gets cached using the shared URLSession like this: URLSession.shared.configuration.urlCache = .shared let task = URLSession.shared.dataTask(with: media.url) { _, _, _ in self.addMediaToQueue(media) } task.resume() and we setup our AVAssetDownloadURLSession like this: // Create the configuration for the AVAssetDownloadURLSession. let backgroundConfiguration = URLSessionConfiguration.background(withIdentifier: "AAPL-Identifier") backgroundConfiguration.urlCache = .shared backgroundConfiguration.requestCachePolicy = .returnCacheDataElseLoad // Create the AVAssetDownloadURLSession using the configuration. assetDownloadURLSession = AVAssetDownloadURLSession(     configuration: backgroundConfiguration,     assetDownloadDelegate: self,     delegateQueue: .main ) Here is an example of the caching headers that we use: Last-Modified: Thu, 11 Mar 2021 02:23:57 GMT Cache-Control: max-age=604800 This is important for us since our manifest url is signed and expires after 12 hours. Example of manifest URL: https://example.host.gr/v1/791/888/773923397316/773923397316.ism/.m3u8[…]~hmac=ee37a750b8238745b5c8cf153ebcd0b693dd5d83 If the client followed the HTTP cache policy and didn’t request the .m3u8 manifest file over the internet, the download would start, despite the 12 hours limit. Is this the intended behaviour of the download process or some kind of an issue? Could you suggest a workaround?
2
0
1.2k
Sep ’21
Unable to install Fairplay certificate on Windows
Hi My team generated the CSR for FairPlay on Windows and when we got the certificate, installing it on the machine used to generate the CSR we get the following error : A certificate issued by the certification authority cannot be installed. Contact your administrator. A certificate chain could not be built to a trusted root authority. 0x800b010a (-2146762486 CERT_E_CHAINING) We did this using the instructions on the FiraPlay Streaming Credential Generation Guide. If we install the certificate by opening the certificate and clicking on the install option, we get this error on the certificate "Windows does not have enough information to verify this certificate" Desperately looking for a solution. Any help would be most appreciated.
0
0
670
Aug ’21
fairplay encrypted live playback doesn't work
I am trying to encrypt a live stream with FairPlay and then play it in the player. I use this method: public void onHTTPCupertinoEncryptionKeyLiveChunk(ILiveStreamPacketizer liveStreamPacketizer, String streamName, CupertinoEncInfo encInfo, long chunkId, int mode) {   if (streamName.startsWith("aes")) {     encInfo.setEncMethod(CupertinoEncInfo.METHOD_SAMPLE_AES);    encInfo.setEncKeyFormat("com.apple.streamingkeydelivery");    encInfo.setEncKeyBytes(BufferUtils.decodeHexString("123456789ABCDEF123456789ABCDEF12"));    encInfo.setEncIVBytes(BufferUtils.decodeHexString("FEDCBA9876543210FEDCBA9876543210"));    encInfo.setEncUrl("skd://skd");    encInfo.setEncKeyFormatVersion("1");   } I use http://player.wmspanel.com/ and I get this license https://ls-proxy.redlabs.pl/license/fps/tvnTest/fps/tvnTest?key=123456789ABCDEF123456789ABCDEF12&iv=FEDCBA9876543210FEDCBA9876543210 and https://r.dcs.redcdn.pl/file/o2/portal/prod/fairplay/cert.pub I just want to see if I get my live license it will be work. Where could there be a mistake? maybe you know some sample players and licenses to test the DRM?
0
0
802
Aug ’21
AVAssetDownloadURLSession ignores HTTP cache
Trying to download an encrypted HLS stream we faced the following behaviour: Setting requestCachePolicy and/or urlCache properties of URLSessionConfiguration that used to create the AVAssetDownloadURLSession seems to have no effect at all. This is important for as since we need the HTTP caching policy to be applied for the .m3u8 manifest file of the stream. Is this the intended behaviour of the download process or some kind of an issue?
0
0
1.1k
Aug ’21
iOS15 + Fairplay + DRM + AppleTV
Hi, I have a video streaming application and a part of code which use FairPlay + DRM. Im trying stream DRN content on appletv and It works well on iOS 13, but on iOS 15 i see nothing and catch internal player error: Error Domain=AVFoundationErrorDomain Code=-11870 "Operation failed" UserInfo={NSLocalizedFailureReason=An unknown error has occurred (808), NSLocalizedDescription=Operation failed, NSUnderlyingError=0x283902700 {Error Domain=NSOSStatusErrorDomain Code=808 "(null)"}}
Replies
0
Boosts
0
Views
860
Activity
Mar ’22
Live FairPlay and WebVTT
I've been maintaining adaptive HLS+FairPlay streams with audio and video for years. My implementation works great. However, I'm now also implementing captions or subtitles, and I'm having trouble with the later. I'm actually able to generate my HLS streams with WebVTT subtitles, and they work great. But as soon as I encrypt the streams, Apple players stop working (forever stall). And my fairplay implementation works perfectly when no subtitles are involved. I'm not encrypting the webvtt chunks: they travel as plain text, as stated in Apple guidelines. I believe this may be the issue: encrypted a/v streams with an unencrypted subtitles stream. However, encrypting plain text subtitles with SAMPLE-AES has no sense to me, so far I was unable to find a single HLS example online with subtitles that also happen to have FairPlay encryption. All documents I have about FairPlay also say nothing about this, I've also tried applying CEA-608 closed captions in the video stream, and this actually works great with FairPlay. But CEA-608 has its own issues, and so I would like to migrate that tech to WebVTT: which also works great, except when FairPlay is involved. I understand that Apple also establishes that I could use TTML (ISMC1) inside fMP4, which I suspect may be SAMPLE-AES encryptable. However, given my customers use cases, I need to use TS format for HLS, and so I can't use fMP4. With all this in mind, do anybody know how to properly configure HLS+FairPlay with a plain text WebVTT subtitles stream? Please note this is about live streaming, and not VOD nor offline playback. Thanks.
Replies
3
Boosts
0
Views
1.8k
Activity
Feb ’22
Widevine or Fairplay in IOS
Hi I wish to know where I can find documentation / sdk to user widevine and / or Fairplay in our application. Is there any examples of using it in AVPlayer? Thank you very much for any help.
Replies
1
Boosts
0
Views
2.2k
Activity
Feb ’22
HLS stream download getting stuck
Trying to download an encrypted HLS stream we faced the following issue: When we start a new download, calling resume() function of AVAssetDownloadTask, the download process gets stuck (not every time) and neither of urlSession(_:assetDownloadTask:didFinishDownloadingTo:) or urlSession(_:task:didCompleteWithError:) delegate functions (AVAssetDownloadDelegate) are getting called. There are cases where not even the urlSession(_:assetDownloadTask:didLoad:totalTimeRangesLoaded:timeRangeExpectedToLoad:) delegate function is getting called. Any suggestions on how to troubleshoot?
Replies
2
Boosts
0
Views
1.8k
Activity
Feb ’22
4K 60FPS Video Capture Frame Rate Drop
When recording 4K 60fps on iPhone 11 Pro, 12 and 13 it does not provide a stable frame rate of 60fps. Checking the Meta data it ranges from 52-58. Are there any settings that can force 60 frames or anything I can do to get a stable frame rate of 60fps. it also appears when trimming the video the frame rate drops as well.
Replies
0
Boosts
0
Views
520
Activity
Jan ’22
IOS 15 Safari fails with Fairplay DRM playback
Hi, IOS 15 Safari does not support Fairplay DRM and gives an error, other browsers like Chrome also do not work. Since IOS 15 released today, we as DRM providers are having a lot of complaints from our customers. The issue does not happen on IOS app, only for IOS browser. We have seen the same issue across multiple DRM providers, so issue is at the end of Apple and only occurs for IOS 15.
Replies
18
Boosts
0
Views
16k
Activity
Jan ’22
How to locate FPS ASK?
I recently successfully registered for the FPS certificate but I lost the ASK. How can I find it? Or I need to revoke the certificate.
Replies
0
Boosts
0
Views
516
Activity
Dec ’21
Fiarplay - I can't play DRM protected HLS contents
I am encoding CMAF contents and when I try to stream a DRM'd video on Safari, nothing happens and I don't even have an error code. It is working without any problem on Chrome (widevine). Our partners can stream the content on their side but we can't, on Macbook or iPhone... We have tested CMAF on the following iOS versions on various device types (phones and tablets): .3 .1 .1 .1 • 14 • 14.3 It was working without any problem. We had an issue on: Macbook pro M1 - Big Sur 11.3.1 Safari Version 14.1 (16611.1.21.161.6) iPhone 12.- iOS 14.5.1 Iphone 12. - iOS 14.4.2 Macbook Air Intel 2020 - Big Sur 11.2.3 Sometimes, it is working when I reload the page ... I don't know what happens...
Replies
1
Boosts
0
Views
1.6k
Activity
Nov ’21
CoreMediaErrorDomain error 42765
Hi, we have a customer having problem with our TV Live application with its iPhone 13 iOS 15. The player raises a CoreMediaErrorDomain error -42765 upon fairplay HLS stream. Is it possible to get a description and potential cause of this probleme to help him. Kind regards Cédric
Replies
2
Boosts
0
Views
3.3k
Activity
Nov ’21
Bug? Playback fails on iOS v15 Beta + Safari + FairPlay Streaming
Playbacking FPS content on iOS v15 Beta + Safari fails even if key request succeeds. I've used Shaka player and other HTML5 players which ends in the same result. Although, when trying it on AVPlayer, playback succeeds so I guess there is some problem in Safari or somewhere. Is it a bug and will it be fixed before release? By the way iOS v14 + Safari + FPS works with no problem.
Replies
3
Boosts
0
Views
2.1k
Activity
Oct ’21
Problem with webkitneedkey
Hello!Well, I am trying to get the apple fairplay demo working for safari.My manifest#EXT-X-SESSION-KEY:METHOD=AES-128,URI="XXXXXXXXX"#EXT-X-STREAM-INF:BANDWIDTH=53000,CODECS="mp4a.40.5"hls-audio=49152.m3u8And I have a method waiting for the event webkitneedkey but it is not being called. video.addEventListener('webkitneedkey', onneedkey, false);Why? What is the problem?
Replies
2
Boosts
0
Views
2.2k
Activity
Oct ’21
Is there any ETA when AVAssetDownloadTask will be available for watchOS
I am running a spike for apple watches and one of the things that I'm evaluating now is the capability to play HLS + fairplay content offline. It seems like the only way forward is by using AVAssetDownloadTask, which is not available on watchOS. So, my question is if there is any plan to release this capability to apple watches soon or if there is any other way to do that.
Replies
1
Boosts
0
Views
772
Activity
Oct ’21
I got an error NSOSStatusErrorDomain -66681 with iOS 13.4
Hi all~!I got an error code -66681 when AVPlayer starts playing, after I updated iOS version to 13.4.When I checked it on osstatus.com, it named 'kAudioQueueErr_CannotStart' from AudioToolBox.framwork.However I have no any clue what it means.Order versions have no issue. It works perfectly.FYI, I set signed cookies to AVURLAsset and it works with non-drm videos.let cookies = cookieInfo.map { HTTPCookie.cookies(withResponseHeaderFields: ["Set-Cookie": "\($0.key)=\($0.value)"], for: url) }.flatMap { $0 } asset = AVURLAsset(url: url, options: [AVURLAssetHTTPCookiesKey : cookies])Issue occures with only drm videos.Could anybody give me some advice about this?
Replies
1
Boosts
0
Views
1k
Activity
Sep ’21
HLS AVPlayer modify master manifest
Hi, I am using AVPLayer for play HLS video(live, vod). Is there any possibility to modify master manifest on the fly? The goal to remove some of variants from the playlist. Example: We have master manifest which contains several variants: #EXTM3U #EXT-X-STREAM-INF:BANDWIDTH=150000,RESOLUTION=416x234,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/low/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=240000,RESOLUTION=416x234,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/lo_mid/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=440000,RESOLUTION=416x234,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/hi_mid/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=640000,RESOLUTION=640x360,CODECS="avc1.42e00a,mp4a.40.2" http://example.com/high/index.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=64000,CODECS="mp4a.40.5" http://example.com/audio/index.m3u8 And I want dynamically remove all variants except the last and have in the result: #EXTM3U #EXT-X-STREAM-INF:BANDWIDTH=64000,CODECS="mp4a.40.5" http://example.com/audio/index.m3u8 Thanks in advance for any help! PS: URLProtocol doesn't suitable for this https://developer.apple.com/forums/thread/75328
Replies
2
Boosts
0
Views
2.9k
Activity
Sep ’21
AVAssetDownloadURLSession ignores HTTP cache
Trying to download an encrypted HLS stream we faced the following behaviour: Setting requestCachePolicy and/or urlCache properties of URLSessionConfiguration that used to create the AVAssetDownloadURLSession seems to have no effect at all. In our application the user can add multiple encrypted HLS streams at a queue. Before adding them in queue, we make sure that the manifest gets cached using the shared URLSession like this: URLSession.shared.configuration.urlCache = .shared let task = URLSession.shared.dataTask(with: media.url) { _, _, _ in self.addMediaToQueue(media) } task.resume() and we setup our AVAssetDownloadURLSession like this: // Create the configuration for the AVAssetDownloadURLSession. let backgroundConfiguration = URLSessionConfiguration.background(withIdentifier: "AAPL-Identifier") backgroundConfiguration.urlCache = .shared backgroundConfiguration.requestCachePolicy = .returnCacheDataElseLoad // Create the AVAssetDownloadURLSession using the configuration. assetDownloadURLSession = AVAssetDownloadURLSession(     configuration: backgroundConfiguration,     assetDownloadDelegate: self,     delegateQueue: .main ) Here is an example of the caching headers that we use: Last-Modified: Thu, 11 Mar 2021 02:23:57 GMT Cache-Control: max-age=604800 This is important for us since our manifest url is signed and expires after 12 hours. Example of manifest URL: https://example.host.gr/v1/791/888/773923397316/773923397316.ism/.m3u8[…]~hmac=ee37a750b8238745b5c8cf153ebcd0b693dd5d83 If the client followed the HTTP cache policy and didn’t request the .m3u8 manifest file over the internet, the download would start, despite the 12 hours limit. Is this the intended behaviour of the download process or some kind of an issue? Could you suggest a workaround?
Replies
2
Boosts
0
Views
1.2k
Activity
Sep ’21
Unable to install Fairplay certificate on Windows
Hi My team generated the CSR for FairPlay on Windows and when we got the certificate, installing it on the machine used to generate the CSR we get the following error : A certificate issued by the certification authority cannot be installed. Contact your administrator. A certificate chain could not be built to a trusted root authority. 0x800b010a (-2146762486 CERT_E_CHAINING) We did this using the instructions on the FiraPlay Streaming Credential Generation Guide. If we install the certificate by opening the certificate and clicking on the install option, we get this error on the certificate "Windows does not have enough information to verify this certificate" Desperately looking for a solution. Any help would be most appreciated.
Replies
0
Boosts
0
Views
670
Activity
Aug ’21
fairplay encrypted live playback doesn't work
I am trying to encrypt a live stream with FairPlay and then play it in the player. I use this method: public void onHTTPCupertinoEncryptionKeyLiveChunk(ILiveStreamPacketizer liveStreamPacketizer, String streamName, CupertinoEncInfo encInfo, long chunkId, int mode) {   if (streamName.startsWith("aes")) {     encInfo.setEncMethod(CupertinoEncInfo.METHOD_SAMPLE_AES);    encInfo.setEncKeyFormat("com.apple.streamingkeydelivery");    encInfo.setEncKeyBytes(BufferUtils.decodeHexString("123456789ABCDEF123456789ABCDEF12"));    encInfo.setEncIVBytes(BufferUtils.decodeHexString("FEDCBA9876543210FEDCBA9876543210"));    encInfo.setEncUrl("skd://skd");    encInfo.setEncKeyFormatVersion("1");   } I use http://player.wmspanel.com/ and I get this license https://ls-proxy.redlabs.pl/license/fps/tvnTest/fps/tvnTest?key=123456789ABCDEF123456789ABCDEF12&iv=FEDCBA9876543210FEDCBA9876543210 and https://r.dcs.redcdn.pl/file/o2/portal/prod/fairplay/cert.pub I just want to see if I get my live license it will be work. Where could there be a mistake? maybe you know some sample players and licenses to test the DRM?
Replies
0
Boosts
0
Views
802
Activity
Aug ’21
AVAssetDownloadURLSession ignores HTTP cache
Trying to download an encrypted HLS stream we faced the following behaviour: Setting requestCachePolicy and/or urlCache properties of URLSessionConfiguration that used to create the AVAssetDownloadURLSession seems to have no effect at all. This is important for as since we need the HTTP caching policy to be applied for the .m3u8 manifest file of the stream. Is this the intended behaviour of the download process or some kind of an issue?
Replies
0
Boosts
0
Views
1.1k
Activity
Aug ’21
How can I revoke FairPlay Certificates?
Because of our ASk value is exposed , we need to reset FairPlay Certificates..Anyone know how to reset FairPlay Certificates? (revoke -> recreat, or change ASk value only )
Replies
4
Boosts
0
Views
4.1k
Activity
Aug ’21