mux.js
mux.js copied to clipboard
MediaSource is undefined in ios, i use blob url to open the video, the video plays with sounds but no pictures
const blob = new Blob([bytes],{type:'video/mp4'}) const url =window.URL.createObjectURL(blob) const link = document.createElement('a') const body = document.querySelector('body') link.href = url link.download = 'test' link.style.display = 'none' body.appendChild(link) link.click() body.removeChild(link)
Unfortunately, iPhones/iOS do not have Media Source Extensions.
Unfortunately, iPhones/iOS do not have Media Source Extensions.
Ts to MP4, only time and progress bar can play on iPhone, but you can't play pictures and sounds, is that the same reason