Does anybody have useful tips on creating good quality recordings for use with prompts in asterisk? I'm interested in hearing input on hardware (mics, dats, sound cards, etc) and software (recording software, dsp) as well as recording techniques. Jerimiah Tularosa Communications
On Tue, 2003-11-25 at 09:24, Jerimiah Cole wrote:> Does anybody have useful tips on creating good quality recordings for > use with prompts in asterisk? I'm interested in hearing input on > hardware (mics, dats, sound cards, etc) and software (recording > software, dsp) as well as recording techniques.Anything that down mixes to 8khz 8bit is fine. 8khz 8bit is the best you are going to get on a phone line anyways, so shoot for just a tad above, and accept the down mixing. BTW, where you to lazy to ask google? http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=sound+quality+recording+site%3Alists.digium.com&btnG=Google+Search -- Steven Critchfield <critch@basesys.com>
I used windows sound recorder to record it (with noise less background) used sox to convert to gsm. It turned out pretty good. Jerimiah Cole wrote:> Does anybody have useful tips on creating good quality recordings for > use with prompts in asterisk? I'm interested in hearing input on > hardware (mics, dats, sound cards, etc) and software (recording > software, dsp) as well as recording techniques. > > Jerimiah > Tularosa Communications > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users >
e-smith
2003-Nov-25 10:24 UTC
[Asterisk-Users] Asterisk integrated with ventrilo or teamspeak
Hi, I would like to get info about integrating either Teamspeak or Ventrilo with Asterisk. Ventrilo and Teamspeak is free voice conferense servers/clients that are commonly used for online voice conference over internet (IP). Both has their own clients! I have had some request about accessing them from telephone lines as well as Internet and I would like to hear if anyone has done anything like it ? Ref. - Ventrilo www.ventrilo.com - Teamspeak www.teamspeak.org Kind Regards Mats
Steven Critchfield
2003-Nov-25 12:07 UTC
[Asterisk-Users] Asterisk integrated with ventrilo or teamspeak
On Tue, 2003-11-25 at 12:50, Andrew Gillham wrote:> Steven Critchfield wrote: > > >Please read past rants about the action you took to create this message. > >Hint: You broke the thread by replying to an unrelated thread. > > > > > > > Could all of the thread police please just reply personally to the > offending party? > > The amount of people interested in the rant is probably similar to the > amount interested in rants about grammar, spelling, newlines, etc.While I understand you not being interested in it, it is important to remind as many people. You tend to speed less through a section of road if you see the police lights on the side with cars pulled over. Also, I was trying to keep it brief so as to not be too annoying. -- Steven Critchfield <critch@basesys.com>
Philipp von Klitzing
2003-Nov-25 12:59 UTC
[Asterisk-Users] Asterisk integrated with ventrilo or teamspeak
Hi!> I would like to get info about integrating either Teamspeak or Ventrilo with > Asterisk.For conferencing Teamspeak is great, no doubt. Being able to join TSS conferences from * would be a great thing indeed. Maybe this is a suggestion worth to post on the TSS forum as well? Cheers, Philipp
Jerimiah Cole <asterisk-users@lists.digium.com> said:>Does anybody have useful tips on creating good quality recordings for >use with prompts in asterisk? I'm interested in hearing input on >hardware (mics, dats, sound cards, etc) and software (recording >software, dsp) as well as recording techniques. >For the dutch prompts we use a condensor mike (you know, the big things they use in studios) and a Yamaha digital studio and 44.1kHz/16bit. I like to get the original recording in as high a quality as possible, leaves you more leeway before you get down to 8kHz/16bit. I get the prompts as a single file with numbers spoken before each text - these are quite handy as cue points, you can easily identify them visually in audacity and it greatly speeds up cutting. After cutting the prompts and saving them (audacity works nice for that), this little script makes sure that all the voice prompts have more-or-less the same (maximum) volume: #!/bin/sh tmpfile=/tmp/rescale$$.wav for i in *.wav; do scale=$(sox $i /tmp/foo.wav stat -v 2>&1) if [ $scale != "1.000" ]; then echo -n "Rescale $i..." cp $i $tmpfile sox $tmpfile -v $scale $i echo fi done Hth, Cees -- Cees de Groot http://www.tric.nl <cg@tric.nl> tric, the new way helpdesk/ticketing software, VoIP/CTI, web applications, custom development
I usually find recording from a PC gives you a sound that is too "full"?... ...but I haven't read the stuff at voip-info (yet, gimme 5) I use our phones to record the prompts... I created an extension that records the prompt, plays it back, and when it sounds right I copy the test.gsm to asterisk/sounds <snip> exten => 8,1,Wait(1) exten => 8,2,Record(/tmp/test:gsm) exten => 8,3,Wait(1) exten => 8,4,Playback(/tmp/test) exten => 8,5,Hangup </snip> :) Ben ______________________________ Benjamin Wakefield ben@team.dcsi.net.au http://www.dcsi.net.au/ DCSI - We do Internet. 64 Queen Street Warragul, VIC 3820 AU Ph: (+61) 1300 665 575 Fx: (+61) 1300 556 595 -----Original Message----- From: Jerimiah Cole [mailto:jcole@tularosa.net] Posted At: Wednesday, 26 November 2003 2:25 AM Posted To: Asterisk Conversation: [Asterisk-Users] Prompt recording Subject: [Asterisk-Users] Prompt recording Does anybody have useful tips on creating good quality recordings for use with prompts in asterisk? I'm interested in hearing input on hardware (mics, dats, sound cards, etc) and software (recording software, dsp) as well as recording techniques. Jerimiah Tularosa Communications _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users
e-smith
2003-Nov-25 18:23 UTC
[Asterisk-Users] Asterisk integrated with ventrilo or teamspeak
Philipp von Klitzing wrote:> Hi! > >> I would like to get info about integrating either Teamspeak or >> Ventrilo with Asterisk. > > For conferencing Teamspeak is great, no doubt. Being able to join TSS > conferences from * would be a great thing indeed. Maybe this is a > suggestion worth to post on the TSS forum as well? > > Cheers, PhilippHmmm, you mean a SIP or H.323 interface to TeamSpeak/Ventrilo ? /Mats