Skip to content

Instantly share code, notes, and snippets.

@manueldev
Created July 6, 2015 21:18
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 manueldev/3d62f728be329d7882dd to your computer and use it in GitHub Desktop.
Save manueldev/3d62f728be329d7882dd to your computer and use it in GitHub Desktop.
scanner wowza
$( "body" ).html("");
for(var num = 0; num <= 200; num++){
(function (num) {
$.get( url + num + "/Manifest", function( data ) {
$( "body" ).append( "canal" + num + " ok <a href=\"" + url + num + "/playlist.m3u8\">link</a><br>");
});
})(num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment