To load your file, your web server needs to return CORS headers.
Install apache2 mod:

sudo a2enmod headers

Add CORS header to your videos directory (and place where json is located if it's different):
<Directory /var/www/html/videos>
Header set Access-Control-Allow-Origin "*"
</Directory>