mpv: fix WebVTT subtitles - #255
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.