Im currently working on a small PWA which should also include several local video files offline. (Using a precache szenario) I've already noticed that the caching of such files is not straightforward, especially for iOS devices because of the limited range request. I've already tried this solution proposed at at similar question: PWA - cached video will not play in Mobile Safari (11.4) But for me that didn't work either.
They only working solutions I found online used some form of blob handling in combination with either the File API or Indexed DB Storage https://simpl.info/video/offline/
Is it possible to cache an entire HTML5 video using the Service Worker API for offline use?
As this where rather old posts I was wondering, which strategy would be appropriate concerning current apis (but also targeting older iOs Devices)
Thank you in advance.