When I try to play media file served by webfs in VLC all goes well, until there is some symbol in filename that does not pass input sanity checks.
In my case I'm having trouble with square brackets [ ].
It is a good practice to UTF-8 encode URLs so that
http://example.com/dir/sub dir/long filename with $ymbols & stuff.mp4
would look like
http%3A%2F%2Fexample.com%2Fdir%2Fsub%20dir%2Flong%20filename%20with%20%24ymbols%20%26%20stuff.mp4
If I manually encode links served by webfs with e.g. urlencoder.org, VLC does not through error and plays fine, so it should be a matter of fixing HTML, possibly as configurable option.
When I try to play media file served by webfs in VLC all goes well, until there is some symbol in filename that does not pass input sanity checks.
In my case I'm having trouble with square brackets
[ ].It is a good practice to UTF-8 encode URLs so that
http://example.com/dir/sub dir/long filename with $ymbols & stuff.mp4would look like
http%3A%2F%2Fexample.com%2Fdir%2Fsub%20dir%2Flong%20filename%20with%20%24ymbols%20%26%20stuff.mp4If I manually encode links served by webfs with e.g.
urlencoder.org, VLC does not through error and plays fine, so it should be a matter of fixing HTML, possibly as configurable option.