Startparam configuration does not allow "#" character
Apparently, JWPlayer doesn't allow a "startparam" configuration (for pseudo streaming) with leading hashtag character, as in "#t", although it works fine with startparam = "t".
For example, when my configuration is 'http.startparam':'t', JWPlayer emits the requests as follows:
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?t=0
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?t=48.71
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?t=98.38
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?t=302.75
But when I change the configuration to 'http.startparam':'#t', JWPlayer truncates the "#t" parameter in every request:
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?
http://did3fcfiknb8d.cloudfront.net/11498031.mp4?
The problem is that our server requires the startparam to be exactly "#t" for pseudo streaming. We tried url encoding the "#", but with no success. Is there a workaround for that?
Thanks in advance,
Marcelo