-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
mpv: fix WebVTT subtitles #255
base: master
Are you sure you want to change the base?
Conversation
The subtitles are passed separated by ':' as a result it will consider https and // to be different files and therefore failing to load.
Good catch. However, can you please see an alternative (maybe a separator character changing argument for mpv)? Else, I'd also have to include a proper URL parser so that |
Why would you need a url parser? I have tried this and it works. Looking through the mpv man page, I'm not sure that the colon can be changed. The doc just says seperator is : for unix and ; for windows. I assume that that's a separator that comes from ffmpeg. |
There would be cases where there are The changes I've considered right now would be to escape any |
|
Oof, this also does not account for other protocols other than |
Of course it does, mpv doesn't care what protocol you use. mpv uses ":" as delimiter for options. It comes from ffmpeg. So it doesn't matter what protocol you use for the subs with mpv. The delimiter is ALWAYS ":". |
The subtitles are passed separated by ':' as a result it will consider
https and // to be different files and therefore failing to load.