Last active
September 4, 2015 23:54
-
-
Save drizzt/403905 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Copyright (c) 2010, 2011 Timothy Redaelli <[email protected]> | |
# | |
# Permission to use, copy, modify, and distribute this software for any | |
# purpose with or without fee is hereby granted, provided that the above | |
# copyright notice and this permission notice appear in all copies. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | |
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
require 'socket' | |
require 'timeout' | |
1100.upto(1600) do |i| | |
begin | |
timeout(2) do | |
begin | |
streamSock = TCPSocket.new("shoutcast.unitedradio.it", i) | |
streamSock.write("GET / HTTP/1.0\r\n\r\n") | |
while (line = streamSock.readline) | |
line.chomp | |
if line[0..8] == "icy-name:" | |
puts "http://shoutcast.unitedradio.it:#{i} #{line[9..-1]}" | |
break | |
end | |
end | |
rescue #EOFError | |
ensure | |
streamSock.close unless streamSock.nil? | |
end | |
end | |
rescue Timeout::Error | |
$stderr.puts "#{i} Timed out!" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://shoutcast.unitedradio.it:1101 105Radio | |
http://shoutcast.unitedradio.it:1103 RMC | |
http://shoutcast.unitedradio.it:1105 105Classics | |
http://shoutcast.unitedradio.it:1107 RMC2 | |
http://shoutcast.unitedradio.it:1109 105Hits | |
http://shoutcast.unitedradio.it:1111 RMCGreatArtists | |
http://shoutcast.unitedradio.it:1113 105HipHop | |
http://shoutcast.unitedradio.it:1115 RMCMonteCarloNightsStory | |
http://shoutcast.unitedradio.it:1117 RMCNEWCLASSICS | |
http://shoutcast.unitedradio.it:1119 VIRGINROCK70 | |
http://shoutcast.unitedradio.it:1121 RMCLoveSongs | |
http://shoutcast.unitedradio.it:1201 COLDPLAY | |
http://shoutcast.unitedradio.it:1203 105House | |
http://shoutcast.unitedradio.it:1207 TFERRO | |
http://shoutcast.unitedradio.it:1209 105Latino | |
http://shoutcast.unitedradio.it:1211 RMCItalia | |
http://shoutcast.unitedradio.it:1213 MSROLLINGSTONE | |
http://shoutcast.unitedradio.it:1215 105Miami | |
http://shoutcast.unitedradio.it:1217 LITFIBA | |
http://shoutcast.unitedradio.it:1221 105CLT | |
http://shoutcast.unitedradio.it:1225 GIORGIA | |
http://shoutcast.unitedradio.it:1229 KAYKAY | |
http://shoutcast.unitedradio.it:1231 PINODANIELE | |
http://shoutcast.unitedradio.it:1235 JOVANOTTI | |
http://shoutcast.unitedradio.it:1237 105ZUCCHERO | |
http://shoutcast.unitedradio.it:1259 BUDDHABAR | |
http://shoutcast.unitedradio.it:1263 1052KMORE | |
http://shoutcast.unitedradio.it:1267 ST046 | |
http://shoutcast.unitedradio.it:1301 VirginRadio | |
http://shoutcast.unitedradio.it:1305 MSLIGABUE | |
http://shoutcast.unitedradio.it:1307 VirginRockClassic | |
http://shoutcast.unitedradio.it:1309 VirginHardRock | |
http://shoutcast.unitedradio.it:1311 RMCMarine | |
http://shoutcast.unitedradio.it:1313 105Story | |
http://shoutcast.unitedradio.it:1315 Virgin PalestrE | |
http://shoutcast.unitedradio.it:1401 RMC80 | |
http://shoutcast.unitedradio.it:1403 RMC90 | |
http://shoutcast.unitedradio.it:1405 RadioBAU | |
http://shoutcast.unitedradio.it:1409 105Vasco | |
http://shoutcast.unitedradio.it:1411 VIRGINROCK80 | |
http://shoutcast.unitedradio.it:1413 ZOORADIO | |
http://shoutcast.unitedradio.it:1511 MINA | |
http://shoutcast.unitedradio.it:1513 VirginRockAlternative |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment