We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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)
The text was updated successfully, but these errors were encountered:
Unfortunately, iPhones/iOS do not have Media Source Extensions.
Sorry, something went wrong.
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
No branches or pull requests
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)
The text was updated successfully, but these errors were encountered: