-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
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
Videos served from file system thorugh local server are not seekable on android #205
Comments
I am also facing this issue, and it's stopping me from implementing trimming in an Ionic 4 application. Update Ionic Info
Update 2 For anyone who stumbles over this an would like to seek the video, I solved it by loading the file as a blob.
|
Me too |
Can you try with this changes? #295 |
Properly handle requests with Range header and return appropriate headers so audio and video tags work correcly and you can go forward or backward ond them fix ionic-team#248, fix ionic-team#205, fix ionic-team#141
🎉 This issue has been resolved in version 3.1.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
@jcesarmobile support is broken, full stream is returned instead of correct range. please fix this. |
When using the html5 video tag with a video sotored in the assets, seek is not possible.
Possible cause/fix:
Server does not support "partial content":
WebViewLocalServer:createWebResourceResponse
usesWebViewLocalServer:PathHandler
which always answers with 200 OK instead 206 PartialContent for videos. doing so would allow html5 video player to seek video and load in memory only the desired partsThe text was updated successfully, but these errors were encountered: