SSL Serving
SSL Serving of the SublimeVideo Player is included with all paid plans.
In order to use SublimeVideo on a secure page (https://), you need to check the "Deliver with SSL for secure pages" checkbox in the My sites page after clicking the “embed code” button.
Mixed serving
If your site includes both secure (https://) and non-secure (http://) pages, you can also use the following script. This will load the right version of SublimeVideo depending on the page’s current security level:
<script type="text/javascript"> document.write(unescape("%3Cscript src='" + (("https:" == document.location.protocol) ? "https://4076.voxcdn.com" : "http://cdn.sublimevideo.net") + "/js/YOUR_TOKEN.js' type='text/javascript'%3E%3C/script%3E")); </script>
All you have to do is replace YOUR_TOKEN with your actual site’s token (you can find it in the My sites page after clicking the “embed code” button).