mux.js icon indicating copy to clipboard operation
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

Open sunnylife24 opened this issue 4 years ago • 2 comments

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)

sunnylife24 avatar May 25 '21 07:05 sunnylife24

Unfortunately, iPhones/iOS do not have Media Source Extensions.

gkatsev avatar Jun 24 '21 22:06 gkatsev

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

zhaoaaaaa5 avatar Jul 22 '22 16:07 zhaoaaaaa5