Author Topic: Anyone know how to change the default custom-linuxmce script announcement?  (Read 3565 times)

sedgington

  • Veteran
  • ***
  • Posts: 82
    • View Profile
Hi,
I can't find how to do this in the forum or the wiki for 7.10. Currently it says, "Thank you for calling, to call everybody in the house press 0..." when you call in on Asterisk. I am assuming that there is a text-to-speech script written somewhere that could be modified but I can't find it. Any pointers greatly appreciated.
« Last Edit: March 05, 2010, 05:13:43 pm by sedgington »

Techstyle

  • Addicted
  • *
  • Posts: 674
    • View Profile
    • Techstyle UK Ltd.
This post may help a little but I never found it

http://forum.linuxmce.org/index.php?topic=8547.msg57431#msg57431

sedgington

  • Veteran
  • ***
  • Posts: 82
    • View Profile
Thanks for the link. Went there and it looks like this is all straight asterisk stuff that would be used with the IVR. Which would be great if this is true.

However, since my FreePBX hooks into asterisk  (Advanced -> Configurations -> Phone Setup) having nothing setup for the Digital Receptionist (IVR) I assume (or perhaps remember reading somewhere?) that Linuxmce doesn't use this (and must not be touched or the whole asterisk house or cards will fall into the Linuxmce foundation).

Can someone confirm that this is true? Could you actually use asterisk's IVR instead of Linuxmce's [custom-linuxmce] context (really [from-pluto-custom] in /etc/asterisk/extensions_pluto_dial.conf? From my uneducated look there, I thought Linuxmce was calling an external program (text-to-speech engine?) to do the reading from a text file and then moving to the next step based on the caller's input. What I read of the setup in 8.10 using festival would also lead one to believe that something like this is the case in 7.10.

Anyone else have some clues/thoughts?

Again, thanks in advance.

cfernandes

  • Guru
  • ****
  • Posts: 359
    • View Profile
    • my company web site
hello ,

the announce is on /var/lib/asterisk/pluto/pluto-default-voicemenu.gsm
but i think that  this file is modified every time that you add new user voice mail

the original file is on  /var/lib/asterisk/pluto/pluto-default-voicemenu2.gsm


sedgington

  • Veteran
  • ***
  • Posts: 82
    • View Profile
Many thanks again! It took some digging this morning on my own to find the directory that you so graciously posted--somehow I knew the answer would be waiting for me when I logged back in! As a side note, it would be great if we could have a central listing of where everything is stored in the directory structure for each device/application in linuxmce. This is often half the battle in trying to get things to work.

My big question still remains how Linuxmce is creating the new announcement as you add users. It seems like it is re-recording the files in that directory as it needs them and then doing a text to speech of the users names in the order they are registered with phone extensions. Anyone that could shed light on how this happens would be a true guru of Linuxmce in my eyes. Lacking that....

If you want to modify your intro on asterisk here is what I have found:

1) As pointed out above, all the voice-menu files are saved as gsm files and located in the directory /var/lib/asterisk/sounds/pluto. Asterisk seems to default to that directory so I didn't have any luck getting any of the files in /var/lib/asterisk/sounds to play with default conf script (listed below in 2). So, if you want to add your own voice menu you should probably consider putting it in there.

2) The file you need in order to tell asterisk where to locate the new voice menu is /etc/asterisk/extensions_pluto_dial.conf and the context is [voice-menu-pluto-custom]. The fourth line down in that context tells asterisk to play the voice menu file: exten => s,4,Background(pluto/pluto-default-voicemenu) and this is the one that has all the users names and #'s included. On my system, it is not really of great audio quality and sounds very computer-speech generated--which is a bit confusing to first-time callers because it is difficult to understand.

3) The other files in the directory which seem to be used to make this file are of quite good quality. If for example, you swap out the line above with the following examples you will get the messages listed:

"Thank you for calling":
exten => s,4,Background(pluto/pluto-default-voicemenu1)

"To call everbody in the house dial 0":
exten => s,4,Background(pluto/pluto-default-voicemenu2)

"If you know the extension, Dial it now":
exten => s,4,Background(pluto/pluto-default-voicemenu3)

"To leave a message press the # sign":
exten => s,4,Background(pluto/pluto-default-voicemenu4)

4) So, if you didn't care about listing the extensions of the users in your home, you could conceivably take these 4 files, join them together, and rename the new file something like /pluto/mashup-intro and use that as the voice intro once you replace the line listed above with your file name. I guess you might also consider just adding them one by one as arguments in the Background command: exten => s,4,Background(pluto/pluto-default-voicemenu1,pluto/pluto-default-voicemenu2, etc.) but I haven't tried that and don't know how that would affect the timing.


5. Alternatively, you could make your own recording based on the extension prompts already listed in the default "pluto/pluto-default-voicemenu" with a recording program that generates gsm or wav files and place it in the directory.

Any other suggestions greatly appreciated.