VoiceGuide IVR Software Main Page
Jump to content

Joining Two Wav Files

Recommended Posts

hie i downloaded shntool and i have tried to run the

"command /c shntool join -stdout 1.wav 2.wav 3.wav > 1_2_3.wav" i have tried to run in vbscript outside voice guide and it works but when i run it in voice guide i get and error. i tried to run it using Run program and it gave me the same error can you help me need to join files urgently

Share this post


Link to post

There should be no difference between the way a VBScript executes in the 'Run VBScript' module and the way the same VBScript executes outside of VG.

 

Please .ZIP up and post the VBScript file and the VoiceGuide script here.

Share this post


Link to post

The .vbs VBScript file supplied in the .zip is very different to the contents of the VBScript module in the VoiceGuide script...

 

Regardless of that, first thing you should try is specifying full path to shntool and all .wav files supplied as parameters.

Share this post


Link to post

i have attached the picture of the error message i am getting

after running this command, trying to put in the path makes even worse

 

"command /c shntool join -stdout 1.wav 2.wav 3.wav > 1_2_3.wav"

post-2392-1173186463_thumb.jpg

Share this post


Link to post

i have a attached the file with file paths and its still giving me the same error

 

"command.com /c shntool.exe join -stdout C:\Program Files\VoiceGuide\Scripts\tare\Q1.wav C:\Program Files\VoiceGuide\Scripts\tare\q2.wav> C:\Program Files\VoiceGuide\Scripts\tare\1_2_3.wav"

kenyascript.zip

Share this post


Link to post

The paths have spaces in them and have not been surrounded in quotes.

 

Try:

 

"command.com /c shntool.exe join -stdout 'C:\Program Files\VoiceGuide\Scripts\tare\Q1.wav' 'C:\Program Files\VoiceGuide\Scripts\tare\q2.wav' > 'C:\Program Files\VoiceGuide\Scripts\tare\1_2_3.wav'"

 

Notice how single quotes ' are used at beginning and end of each path.

Share this post


Link to post

Hi i have tried the to place that code in my vb script and i am still getting the same error what other things can i do. is the another tool of merging wav files than just shntool that i can try?

Share this post


Link to post

Hi,

 

trying solving joining two wav files I found problem using shntool. Problem is because shntool not supporting Microsoft A-law format. Any suggestion?

 

Any other solution to join recorded calls?

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×