Recent content by astrakid

  1. A

    German voice prompts

    well, corrected the file manually, after i found out how to jump to the position within vim. however the script doesn't seem to work - but it might be a wrong combination ov voice-id and api version.
  2. A

    German voice prompts

    hi, thx a lot. unfortunately it is still not working: root@fusionpbx:/opt/german-voice-prompts# python3 tts.py Traceback (most recent call last): File "/opt/german-voice-prompts/tts.py", line 18, in <module> for row in reader: File "<frozen codecs>", line 322, in decode...
  3. A

    German voice prompts

    thx a lot, will try it after my holiday! :cool:
  4. A

    German voice prompts

    cool thanks - i was on a quite good way, but one mistake was there, so your clarification helped. now i need a clean prompts.txt. would be great if you could provide that file as compressed archive.
  5. A

    German voice prompts

    hi, can you post your script with correct indentations? i think i got them corrected, but to be sure... and the prompts-file is not accepted, there are always characters leading to an error. can you upload your prompts file zipped, so that the original encoding is saved? regards, andre
  6. A

    German voice prompts

    will check your script and prompts file later. thx!
  7. A

    German voice prompts

    no, ithnik i used this one: https://github.com/jpawlowski/freeswitch-sounds-tts
  8. A

    German voice prompts

    hi, i used that script as well, but not all needed prompts are translated. i had some gaps. but i had no time to get into it more detailed.
  9. A

    German voice prompts

    ok. hope markjcrane will answer. ;)
  10. A

    German voice prompts

    any chance to get the prompts as well?
  11. A

    Homer bores me to tears... (How to monitor sip in realtime without homer)

    For simple packet capture simply use tcpdump. But I guess that is not what you want to achieve. I still recommend heplify (on the box where sip is happening and maybe rtp) -> kamailio (remote server) -> mysql / homer. heplify is very easy to use and will create pcap-files with only rtp / rtcp /...
  12. A

    Homer bores me to tears... (How to monitor sip in realtime without homer)

    you'd need to forward the traffic to another server (mirroring) and use the tools there. but that means more network traffic. you have to devide if it worth the effort. we had to go that way because we were not able to install tools on an virtual appliance of avaya, so we did exactly that (but...
  13. A

    Homer bores me to tears... (How to monitor sip in realtime without homer)

    we had similar issues and switched to heplify - it works for larger frames even with udp! and besides this it eliminates the need for complex captureagent.
  14. A

    Homer bores me to tears... (How to monitor sip in realtime without homer)

    what do you choose instead of homer? i am always open to new things and i am quite interested. i was not able yet to find a better tool at that price (from nothing to some bucks for developing something for our needs). for realtime i agree totally to use other tools (sngrep / tcpdump / wireshark...
  15. A

    system-call return value in several variables?

    hi, within my dialplan i am calling a custom script. is it possible, to split the return value into different variables? my script returns always 5 values containing surname, givenname, additionalInfo2, additionalInfo2, ani I would like to store them into variables $sn, $name, $addinf1...