[Home]

Summary:ASTERISK-05178: No sound when using AGI script Meetme
Reporter:harold (harold)Labels:
Date Opened:2005-09-28 15:42:09Date Closed:2011-06-07 14:10:23
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Applications/app_meetme
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:When i use this agi (or other) script in the meetme converence, it is not possible to talk with the other users of this meetme room.

****** ADDITIONAL INFORMATION ******

#!/usr/bin/perl

use Asterisk::AGI;

$AGI =new Asterisk::AGI;
%input = $AGI->ReadParse();

$soundpath ="/var/lib/asterisk/sounds/";
$timeout = 10;


while(1)
       {
       $input = chr($AGI->wait_for_digit($timeout));

       if ($input eq "*")
               {
               $AGI->stream_file("$soundpath/vm-msginstruct");
               }

       if ($input eq "1")
               {
               exit 0;
               }

       }
Comments:By: harold (harold) 2005-09-28 15:43:30

Ofcourse with the 'b' — run AGI script specified in ${MEETME_AGI_BACKGROUND}  option

By: Clod Patry (junky) 2005-09-28 15:48:10

its normal, its using your pseudo.

By: harold (harold) 2005-09-28 15:53:23

But is there solution for this problem?

By: Clod Patry (junky) 2005-09-28 19:13:49

maybe a mutex on the stream on the zap?

By: Brian West (bkw918) 2005-09-28 21:05:46

that only works on all ZAP channels. And I don't think you can talk on that channel.

/b

By: Olle Johansson (oej) 2005-10-20 02:17:04

Any updates on this bug report? Does the problem exist in CVS head?

/Housekeeping

By: Clod Patry (junky) 2005-11-25 21:23:08.000-0600

Over a month without a response.
If you still have interest in that problem and want to work on that, feel free to ask a marshall in #asterisk-bugs on Freenode.

Thanks.