I have used this script. Works well.<br><br><br><div class="content_title"><h1>asterisk at home festival weather configuration</h1></div>MP3 Audio directly from NOAA!  Updated URLs on 12-15-06
<br>
<br>If you are in the San Diego NOAA Office area (and maybe others, 
check your regional NOAA Office homepage from <a href="http://weather.gov/">http://weather.gov/</a>), you 
can get an audio file of the current forecast for your zone and play it 
directly.
<br>
<br>For the San Diego NOAA Office area, go to 
<a href="http://newweb.wrh.noaa.gov/sgx/">http://newweb.wrh.noaa.gov/sgx/</a> and click on the Audio selection under 
Forecasts.  Get the URL of the audio file for your zone from the map.
<br>
<br>Create an announcement in wav format from: <a href="http://www.research.att.com/~ttsweb/tts/demo.php">http://www.research.att.com/~ttsweb/tts/demo.php</a>
<br>I like the UK-Audrey voice, but try some others too.
<br>Make something like:
<br><span style="font-family: monospace;">  latest-forecast.wav  "Please wait while I download the latest forecast"
</span><br><span style="font-family: monospace;">  select-weatherorvmc.wav  "Press 1 for voicemail press 2 for the latest weather forecast"
</span><br>You will have to convert the wav files from 16000Hz to 8000Hz
 and maybe speed them up a bit (135%) and reduce the volume (60%) before
 you use them.  Put them in /var/lib/asterisk/sounds named 
latest-forecast.wav and select-weatherorvmc.wav
<br>
<br>Add something like this to your extensions.conf (maybe in the <a href="http://www.voip-info.org/wiki/view/rans">rans</a> section) to get the latest forecast when you dial whatever extension (like 865) that you choose.
<br>
<br>My extensions.conf for audio weather:
<br><pre><code><br>exten => 865,1,Answer<br>exten => 865,2,Playback(latest-forecast)<br>exten => 865,3,System(/usr/bin/curl -s <a href="http://www.wrh.noaa.gov/sgx/data/audio/LAXSAFC42.mp3">http://www.wrh.noaa.gov/sgx/data/audio/LAXSAFC42.mp3</a> > /tmp/LAXSAFC42.mp3)<br>
exten => 865,4,Wait(1)<br>exten => 865,5,MP3Player(/tmp/LAXSAFC42.mp3)<br>exten => 865,6,System(rm /tmp/LAXSAFC42.mp3 -f) <br>exten => 865,7,Hangup<br></code></pre>
<br>
<br>If you have trouble, make sure you have curl installed, change the 
path above if necessary.  find / -type f -name "curl" will find your 
curl executable.  I'm using MP3Player instead of Playback because I 
don't have a sound card in the Asterisk box so mpg123 fails when it 
tries to use /dev/dsp.  I suppose there is a way to have a dummy dev, 
but I don't know how.  If you do use Playback instead of MP3Player, 
don't use the .mp3 file extension in your extensions.conf.
<br><br><br><a href="http://www.voip-info.org/wiki/view/asterisk+at+home+festival+weather+configuration">http://www.voip-info.org/wiki/view/asterisk+at+home+festival+weather+configuration</a><br><br>David<br><br><br><div class="gmail_quote">
On Thu, Dec 9, 2010 at 8:27 PM, Dwaine Garden <span dir="ltr"><<a href="mailto:DwaineGarden@rogers.com">DwaineGarden@rogers.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
I would be interested in that.<br>
<br>
Dwaine<br>
<div><div></div><div class="h5"><br>
<br>
"KB3ORS - Brian" <<a href="mailto:kb3ors@windstream.net">kb3ors@windstream.net</a>> wrote:<br>
<br>
>I know there is weather scripts for irlp. But I am not having any luck<br>
>for allstar. I am wondering is there anyone who has one is willing to<br>
>help build one. What I am looking for just a weather alert script for<br>
>the severe alerts. I don’t want a full blown weather forcast.<br>
><br>
>Any help appreciated<br>
><br>
</div></div>>KB3ORS – Brian_______________________________________________<br>
>App_rpt-users mailing list<br>
><a href="mailto:App_rpt-users@qrvc.com">App_rpt-users@qrvc.com</a><br>
><a href="http://qrvc.com/mailman/listinfo/app_rpt-users" target="_blank">http://qrvc.com/mailman/listinfo/app_rpt-users</a><br>
<br>
--<br>
Sent from my Android phone with K-9 Mail. Please excuse my brevity.<br>
<font color="#888888">--<br>
Sent from my Android phone with K-9 Mail. Please excuse my brevity.<br>
_______________________________________________<br>
App_rpt-users mailing list<br>
<a href="mailto:App_rpt-users@qrvc.com">App_rpt-users@qrvc.com</a><br>
<a href="http://qrvc.com/mailman/listinfo/app_rpt-users" target="_blank">http://qrvc.com/mailman/listinfo/app_rpt-users</a><br>
</font></blockquote></div><br>