Seeking in Chrome #1
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Reference: iou1name/Musik#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Chrome only allows seeking in HTML5 video/audio elements if the server serving the file responds to partial content requests correctly, even if the file is small enough to be retrieved in one go. The same applies to looping.
https://stackoverflow.com/questions/8088364/html5-video-will-not-loop
Possible way to fix would be translating the start and end positions of the
Range
header into arguments for thesubprocess
command. I don't thinkffmpeg
allows you to specify byte ranges directly though, so some magic might need to be worked withdd
.Alternatively, we could just play with the headers to trick Chrome into thinking we responded to the partial request properly when we didn't.