Actually, we don't need to use the RoboBrowser plugin after all, though it's one option.
It seems that Shoutcast feeds require a get request that specifies a "user agent". We have a specific scrape action for such sites in VC:
http://voxcommando.com/mediawiki/index.php?title=Actions#ScrapeThere is no universal, easy answer for how to find the information we need, unfortunately. If looking at a site's page source directly doesn't give the answer, then we have to dig a little, do some web searches, etc.
In the case of your particular jazz feed, I was able to look at the pls file (I used Notepad++) to find the URL for that stream. When I went to that page, I saw it had what looked like scrape-able song information on it. When I tried to use a regular scrape, I got an error. I was able to use RoboBrowser instead, but this is much less efficient. Looking up that error and how Shoutcast works, we figured out that they require user agent info in the header, so I used that action instead, and was able to scrape the page that contains now playing data.
Basically, if you have the time/interest in investigating and finding a solution, there usually is one, but there are no hard and fast rules. Different sites work differently.
The folllowing command gets the current song data for the Florida jazz stream:
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 1.9.5.5-->
<command id="279" name="get Florida Jazz song info" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>Scrape.UserAgent</cmdType>
<params>
<param>http://38.96.175.21:8802</param>
<param>Mozilla</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>System.SetClipboardText</cmdType>
<params>
<param>{LastResult}</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<params>
<param>Current.Song:.*?<b>(.*?).-.(.*?)</b></param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>OSD.ShowText</cmdType>
<params>
<param>Artist: {Match.1.1}{cr}Song: {Match.1.2}</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.Speak</cmdType>
<params>
<param>This is the song {Match.1.2}, by the artist {Match.1.1}.</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>get song info</phrase>
</command>
(Note that my regular expression won't work if you're using version 1 of VC, but the regular expression can be re-written if needed. It's just that VC2 offers much more efficient syntax for such things.)