Skip to content

Instantly share code, notes, and snippets.

@devinmcinnis
Last active January 28, 2020 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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);
})();
@CarbonPhoto
Copy link

Does this find links for NFL games still? For VLC

@mrdziuban
Copy link

I haven't had any luck with it, but I'd also love to hear from @devinmcinnis to see if it's working for him.

@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