<p dir="ltr">Am I missing something or is the Allstar Stats server been offline lately. Cannot reach it to obtain node statuses and bubble maps. </p>
<p dir="ltr">73s </p>
<p dir="ltr">Chuck <br>
KM4NRJ </p>
<div class="gmail_quote">On Apr 26, 2016 12:00 PM,  <<a href="mailto:app_rpt-users-request@ohnosec.org">app_rpt-users-request@ohnosec.org</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send App_rpt-users mailing list submissions to<br>
        <a href="mailto:app_rpt-users@ohnosec.org">app_rpt-users@ohnosec.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:app_rpt-users-request@ohnosec.org">app_rpt-users-request@ohnosec.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:app_rpt-users-owner@ohnosec.org">app_rpt-users-owner@ohnosec.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of App_rpt-users digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: Play two audio files back to back (David McGough)<br>
   2. Re: Play two audio files back to back (Steve Mahler)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Tue, 26 Apr 2016 07:51:32 -0400 (EDT)<br>
From: David McGough <<a href="mailto:kb4fxc@inttek.net">kb4fxc@inttek.net</a>><br>
To: "<a href="mailto:app_rpt-users@ohnosec.org">app_rpt-users@ohnosec.org</a>" <<a href="mailto:app_rpt-users@ohnosec.org">app_rpt-users@ohnosec.org</a>><br>
Subject: Re: [App_rpt-users] Play two audio files back to back<br>
Message-ID:<br>
        <<a href="mailto:Pine.LNX.4.44.1604260747210.7079-100000@goliath.inttek.net">Pine.LNX.4.44.1604260747210.7079-100000@goliath.inttek.net</a>><br>
Content-Type: TEXT/PLAIN; charset=ISO-8859-1<br>
<br>
<br>
I think the playback command only takes a single audio filename.<br>
<br>
<br>
Try this approach:<br>
<br>
cat /var/lib/asterisk/sounds/tide.gsm > /tmp/temp.gsm<br>
cat /var/lib/asterisk/sounds/times.gsm >> /tmp/temp.gsm<br>
cat /var/lib/asterisk/sounds/will-expire.gsm >> /tmp/temp.gsm<br>
cat /var/lib/asterisk/sounds/at-any-time.gsm >> /tmp/temp.gsm<br>
<br>
asterisk -rx "rpt playback $node /tmp/temp"<br>
<br>
rm -f /tmp/temp.gsm<br>
<br>
<br>
Note that once these audio segments are cat'ed together, a final call to<br>
sox can be used to change levels, formats, etc., if needed.<br>
<br>
73, David KB4FXC<br>
<br>
<br>
<br>
On Tue, 26 Apr 2016, kk6ecm wrote:<br>
<br>
> Hmmm ...  appears to be a mix of two syntaxes, and you may not achieve your goal...<br>
><br>
> Xxxxxxx*CLI> help rpt playback<br>
> Usage: rpt playback <nodename> <sound_file_base_name><br>
>        Send an Audio File to a node, send to all other connected nodes (global)<br>
><br>
>             (seems there used to be a <delay> as a third variable)<br>
><br>
> and<br>
><br>
> playback, file&file1 on the current node, where the concatenated files are joined with the &, no spaces.<br>
><br>
> I'm wondering... set delay to 0... not sure if there is a default, or even if it is still a feature.<br>
><br>
> e.g.<br>
><br>
> >> asterisk -rx "rpt playback $node channel 0"<br>
> >> > asterisk -rx "rpt playback $node digits/$chan 0"<br>
><br>
> Thanks,<br>
> Bob<br>
> kk6ecm<br>
> 73<br>
><br>
> Sent from iPad<br>
><br>
><br>
> > On Apr 25, 2016, at 9:26 PM, Skyler F <<a href="mailto:electricity440@gmail.com">electricity440@gmail.com</a>> wrote:<br>
> ><br>
> > Small Problem:<br>
> ><br>
> > rpt playback 42622 channel&channel<br>
> ><br>
> > ast_streamfile: Unable to open channel&channel<br>
> ><br>
> > 73<br>
> ><br>
> > Skyler<br>
> ><br>
> ><br>
> >> On Mon, Apr 25, 2016 at 10:23 PM, kk6ecm <<a href="mailto:kk6ecm@gmail.com">kk6ecm@gmail.com</a>> wrote:<br>
> >>  Leading and trailing spaces with the & are not tolerated.<br>
> >> e.g filename&filename2 OK<br>
> >> filename & filename2 Not OK<br>
> >><br>
> >> Thanks,<br>
> >> Bob<br>
> >> kk6ecm<br>
> >> 73<br>
> >><br>
> >> Sent from iPad<br>
> >><br>
> >><br>
> >> > On Apr 25, 2016, at 8:13 PM, Skyler F <<a href="mailto:electricity440@gmail.com">electricity440@gmail.com</a>> wrote:<br>
> >> ><br>
> >> > I am currently writing scripts for my remote base, and am working on the channel switch acknowledgment.<br>
> >> ><br>
> >> > Here is what I am currently doing:<br>
> >> ><br>
> >> > asterisk -rx "rpt playback $node channel"<br>
> >> > asterisk -rx "rpt playback $node digits/$chan"<br>
> >> ><br>
> >> > This works well for my 16 channel radio, but I am annoyed by the amount of space between the audio files.<br>
> >> ><br>
> >> > I tried stuff like<br>
> >> ><br>
> >> > asterisk -rx "rpt playback $node channel & digits/$chan"<br>
> >> ><br>
> >> > but I just get a syntax error.<br>
> >> ><br>
> >> > Does anybody know the solution to get the audio files to play back to back like they do when AllStar announces node connections etc?<br>
> >> ><br>
> >> > 73<br>
> >> > Skyler KD??WHB\<br>
> >> > _______________________________________________<br>
> >> > App_rpt-users mailing list<br>
> >> > <a href="mailto:App_rpt-users@ohnosec.org">App_rpt-users@ohnosec.org</a><br>
> >> > <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a><br>
> >> ><br>
> >> > To unsubscribe from this list please visit <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a> and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button"<br>
> >> > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.<br>
> ><br>
> ><br>
> ><br>
> > --<br>
> > Skyler Fennell<br>
> > <a href="http://amsatnet.info" rel="noreferrer" target="_blank">amsatnet.info</a><br>
> > KD??WHB<br>
> > <a href="mailto:electricity440@gmail.com">electricity440@gmail.com</a><br>
><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 26 Apr 2016 07:08:11 -0500<br>
From: Steve Mahler <<a href="mailto:kizzy@lusfiber.net">kizzy@lusfiber.net</a>><br>
To: <a href="mailto:app_rpt-users@ohnosec.org">app_rpt-users@ohnosec.org</a><br>
Subject: Re: [App_rpt-users] Play two audio files back to back<br>
Message-ID: <<a href="mailto:571F5A2B.4050307@lusfiber.net">571F5A2B.4050307@lusfiber.net</a>><br>
Content-Type: text/plain; charset=windows-1252; format=flowed<br>
<br>
Or, if you are using WAV files ... catwav them (which uses sox) and play<br>
the result ...<br>
<br>
/bin/rm -f  $WXT/$TEMPMSG       #Make filename available for output<br>
/usr/local/bin/catwav $WXT/$TAILMSG  $WXA/${P1}${P2}${P3} $WXT/$TEMPMSG<br>
/bin/rm -f  $WXT/$TAILMSG       #Make filename available for output<br>
/usr/local/bin/catwav $WXT/$TEMPMSG  $WXA/spc.wav $WXT/$TAILMSG<br>
<br>
You would do the asterisk -rx " rpt localplay NODE cattedfile" here (I<br>
use it to build tailmessages with multiple announcements).<br>
<br>
...STeve - KF5VH<br>
<br>
<br>
<br>
On 4/26/2016 6:51 AM, David McGough wrote:<br>
> I think the playback command only takes a single audio filename.<br>
><br>
><br>
> Try this approach:<br>
><br>
> cat /var/lib/asterisk/sounds/tide.gsm > /tmp/temp.gsm<br>
> cat /var/lib/asterisk/sounds/times.gsm >> /tmp/temp.gsm<br>
> cat /var/lib/asterisk/sounds/will-expire.gsm >> /tmp/temp.gsm<br>
> cat /var/lib/asterisk/sounds/at-any-time.gsm >> /tmp/temp.gsm<br>
><br>
> asterisk -rx "rpt playback $node /tmp/temp"<br>
><br>
> rm -f /tmp/temp.gsm<br>
><br>
><br>
> Note that once these audio segments are cat'ed together, a final call to<br>
> sox can be used to change levels, formats, etc., if needed.<br>
><br>
> 73, David KB4FXC<br>
><br>
><br>
><br>
> On Tue, 26 Apr 2016, kk6ecm wrote:<br>
><br>
>> Hmmm ...  appears to be a mix of two syntaxes, and you may not achieve your goal...<br>
>><br>
>> Xxxxxxx*CLI> help rpt playback<br>
>> Usage: rpt playback <nodename> <sound_file_base_name><br>
>>         Send an Audio File to a node, send to all other connected nodes (global)<br>
>><br>
>>              (seems there used to be a <delay> as a third variable)<br>
>><br>
>> and<br>
>><br>
>> playback, file&file1 on the current node, where the concatenated files are joined with the &, no spaces.<br>
>><br>
>> I'm wondering... set delay to 0... not sure if there is a default, or even if it is still a feature.<br>
>><br>
>> e.g.<br>
>><br>
>>>> asterisk -rx "rpt playback $node channel 0"<br>
>>>>> asterisk -rx "rpt playback $node digits/$chan 0"<br>
>> Thanks,<br>
>> Bob<br>
>> kk6ecm<br>
>> 73<br>
>><br>
>> Sent from iPad<br>
>><br>
>><br>
>>> On Apr 25, 2016, at 9:26 PM, Skyler F <<a href="mailto:electricity440@gmail.com">electricity440@gmail.com</a>> wrote:<br>
>>><br>
>>> Small Problem:<br>
>>><br>
>>> rpt playback 42622 channel&channel<br>
>>><br>
>>> ast_streamfile: Unable to open channel&channel<br>
>>><br>
>>> 73<br>
>>><br>
>>> Skyler<br>
>>><br>
>>><br>
>>>> On Mon, Apr 25, 2016 at 10:23 PM, kk6ecm <<a href="mailto:kk6ecm@gmail.com">kk6ecm@gmail.com</a>> wrote:<br>
>>>>   Leading and trailing spaces with the & are not tolerated.<br>
>>>> e.g filename&filename2 OK<br>
>>>> filename & filename2 Not OK<br>
>>>><br>
>>>> Thanks,<br>
>>>> Bob<br>
>>>> kk6ecm<br>
>>>> 73<br>
>>>><br>
>>>> Sent from iPad<br>
>>>><br>
>>>><br>
>>>>> On Apr 25, 2016, at 8:13 PM, Skyler F <<a href="mailto:electricity440@gmail.com">electricity440@gmail.com</a>> wrote:<br>
>>>>><br>
>>>>> I am currently writing scripts for my remote base, and am working on the channel switch acknowledgment.<br>
>>>>><br>
>>>>> Here is what I am currently doing:<br>
>>>>><br>
>>>>> asterisk -rx "rpt playback $node channel"<br>
>>>>> asterisk -rx "rpt playback $node digits/$chan"<br>
>>>>><br>
>>>>> This works well for my 16 channel radio, but I am annoyed by the amount of space between the audio files.<br>
>>>>><br>
>>>>> I tried stuff like<br>
>>>>><br>
>>>>> asterisk -rx "rpt playback $node channel & digits/$chan"<br>
>>>>><br>
>>>>> but I just get a syntax error.<br>
>>>>><br>
>>>>> Does anybody know the solution to get the audio files to play back to back like they do when AllStar announces node connections etc?<br>
>>>>><br>
>>>>> 73<br>
>>>>> Skyler KD??WHB\<br>
>>>>> _______________________________________________<br>
>>>>> App_rpt-users mailing list<br>
>>>>> <a href="mailto:App_rpt-users@ohnosec.org">App_rpt-users@ohnosec.org</a><br>
>>>>> <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a><br>
>>>>><br>
>>>>> To unsubscribe from this list please visit <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a> and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button"<br>
>>>>> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.<br>
>>><br>
>>><br>
>>> --<br>
>>> Skyler Fennell<br>
>>> <a href="http://amsatnet.info" rel="noreferrer" target="_blank">amsatnet.info</a><br>
>>> KD??WHB<br>
>>> <a href="mailto:electricity440@gmail.com">electricity440@gmail.com</a><br>
> _______________________________________________<br>
> App_rpt-users mailing list<br>
> <a href="mailto:App_rpt-users@ohnosec.org">App_rpt-users@ohnosec.org</a><br>
> <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a><br>
><br>
> To unsubscribe from this list please visit <a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a> and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button"<br>
> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.<br>
><br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
App_rpt-users mailing list<br>
<a href="mailto:App_rpt-users@ohnosec.org">App_rpt-users@ohnosec.org</a><br>
<a href="http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users" rel="noreferrer" target="_blank">http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users</a><br>
<br>
<br>
End of App_rpt-users Digest, Vol 86, Issue 62<br>
*********************************************<br>
</blockquote></div>