Hi, Few days ago, my asterisk began to stop unexpectedly What I did: - Added a mp3 to the musiconhold directory - Adjusted the permissions (chown asterisk:asterisk + chmod 755) - Reconfigured the musiconhold.conf to the deprecated format (found the example on the internet) [classes] default => quietmp3:/etc/asterisk/moh,r - Restarted the service I thought the new mp3 was corrupted so I removed it from the server. The problem perssisted so yesterday I changed the deprecated configuration to: [default] mode=quietmp3 directory=/etc/asterisk/moh random=yes My original configuration was: [default] mode=files directory=/etc/asterisk/moh I have no logs telling me thate quietmp3 failed and I cannot find any way to see if the musiconhold was enabled when asterisk dropped. Here are my questions (finally): Do you know if quietmp3 may kill the server? Is there a way to set random in "files" mode? I am using Asterisk 1.4.17~dfsg-2ubuntu1.1 on an Ubuntu 8.04.4 server. Thank you very much ------- Alexandre V?zina -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100429/84020770/attachment.htm
Hi, please always add asterisk version to your query. I managed to run internet radio (that streams MP3) within asterisk. Minor change is nescesarry to make it work with random MP3s. My Dialplan: exten => _X.,n,Answer() exten => _X.,n,MP3Player(http://stream.m-1.fm/m1/mp3) $ cat /usr/bin/mpg123 #!/bin/bash /usr/bin/wget -q -O - $1 | /usr/bin/madplay -Q -z -o raw:- --mono -R 8000 -a -6 - You should change the WGET part to something that better suits your needs. Tested on asterisk 1.4.27 On Thu, Apr 29, 2010 at 10:59 PM, Alexandre V?zina <avezina at vencomm.ca> wrote:> Hi, > Few days ago, my asterisk began to stop unexpectedly > What I did: > > Added a mp3 to the musiconhold directory > > Adjusted the permissions (chown asterisk:asterisk + chmod 755) > Reconfigured the musiconhold.conf to the deprecated format (found the > example on the internet) > > [classes] > default => quietmp3:/etc/asterisk/moh,r > > Restarted the service > > I thought the new mp3 was corrupted so I removed it from the server. > The problem perssisted so yesterday I changed the deprecated configuration > to: > [default] > mode=quietmp3 > directory=/etc/asterisk/moh > random=yes > My original configuration was: > [default] > mode=files > directory=/etc/asterisk/moh > I have no logs telling me thate quietmp3 failed and I cannot find any way to > see if the musiconhold was enabled ?when asterisk dropped. > Here are my questions (finally): > Do you know if quietmp3 may kill the server? > Is there a way to set random in "files" mode? > I am using??Asterisk 1.4.17~dfsg-2ubuntu1.1 on an Ubuntu 8.04.4 server. > Thank you very much > ------- > Alexandre V?zina > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > ? ? ? ? ? ? ? http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > ? http://lists.digium.com/mailman/listinfo/asterisk-users >
2010/4/30 Motiejus Jak?tys <desired.mta at gmail.com>> Hi, > please always add asterisk version to your query. >I am using Asterisk 1.4.17~dfsg-2ubuntu1.1 on an Ubuntu 8.04.4 server.> > I managed to run internet radio (that streams MP3) within asterisk. > Minor change is nescesarry to make it work with random MP3s. > > My Dialplan: > exten => _X.,n,Answer() > exten => _X.,n,MP3Player(http://stream.m-1.fm/m1/mp3) > > $ cat /usr/bin/mpg123 > > #!/bin/bash > /usr/bin/wget -q -O - $1 | /usr/bin/madplay -Q -z -o raw:- --mono -R > 8000 -a -6 - > > You should change the WGET part to something that better suits your needs. > > Tested on asterisk 1.4.27 >Good. Is there a way to set random in "files" mode? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100430/a8f49202/attachment.htm