I'm trying to use the JWPlayer Caption plugin in an environment that is not exposed to the public internet.
All of the documentation I've read about JWPlayer plugins (like this) just says to insert a JSON snippet like this in your JWPlayer setup code:
plugins: {
"captions-2": {
file: "/assets/captions.srt"
}
But when I do this JWPlayer attempts to load a plugin script from the following URL http://lp.longtailvideo.com/5/captions/captions-2.js
, but--because my system can't reach the public internet--this URL in inaccessible.
I would like to host the captions-2.js
file myself, but I don't know how to reference the file in my JWPlayer setup. Can anyone tell me how to customize the location of the plugin file that JWPlayer attempts to download?
Thanks.