Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl $|=1; # WolfSkunk ShoutForward # v0.2 by Kelly "STrRedWolf" Price # A downsampling restreamer! ### Configuration.... ## Where to pull from... ## (Example: Wolfox Radio) # $source="http://166.90.143.148:9160/"; $source="http://localhost:8000/166.90.143.148:9160/"; ## Where to shout it to. # Shouting to Icecast goes to the same server, # but to a Shoutcast server, you need to shout it to server port+1 # Example local icecast server $destsite='localhost'; $destport=8000; $pass='put up one yourself'; ## Lame Options. # Default: 16kbps Mono (from sterio) $lameopt='-b 16 -m m -a'; ### Code use IO::Socket; print "WSS> Shouting from $source\nto $destsite:$destport...\n"; $out=IO::Socket::INET->new(Proto=>'tcp', PeerAddr=> $destsite, PeerPort=> $destport) or die "$!"; $out->autoflush(1); print $out "$pass\r\n\r\n"; $code=<$out>; print $code; die "Got from server $code" if($code !~ /^OK/); print "WSS> We're in!\n"; # while(<$out>) # { # print "WSS> $_"; # tr/\r\n//d; # last if(/^$/); # } print $out "icy-name: [[[WolfFox Radio]]] Charm's Mix Party! Herm Have +n Mix-Dance-Techno/Goa\r\n"; print $out "icy-url: http://localhost:8000/\r\n"; print $out "icy-pub: 0\r\n"; print $out "icy-genre: Test\r\n"; print $out "icy-br: 20\r\n"; print $out "\r\n\r\n"; open(IN,"mpg123 -b 2048 -s $source | lame $lameopt -x -s 22.05 - - |") +; while(1) { $_=<IN>; print $out $_; } close $out; close IN;

In reply to WolfSkunk ShoutForward by strredwolf

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-19 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found