Skip to content

Instantly share code, notes, and snippets.

@devinmcinnis
Last active January 28, 2020 03:41
Show Gist options
  • Save devinmcinnis/8380360 to your computer and use it in GitHub Desktop.
Save devinmcinnis/8380360 to your computer and use it in GitHub Desktop.
NFL VLC Streams Links
(function () {
var teamName = "seahawks"; // Change this based on home team's name (post-season)
var i = 1;
var getStream = setInterval(function () {
var streamURL = 'http://nlds' + i + '.cdnak.neulion.com/nlds/nfl/' + teamName + '/as/live/' + teamName + '_hd_800.m3u8';
$.ajax({
dataType: 'jsonp',
url: streamURL,
data: {
callback: '?'
},
complete: function (data, status) {
if (status === 'parsererror') {
clearInterval(getStream);
console.log(streamURL);
}
}
});
i++;
}, 200);
})();
@devinmcinnis
Copy link
Author

Oh man, I must have turned off my gist emails. I haven't tried it this year and, by the sounds of it, it doesn't work anymore. Sorry to disappoint.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment