CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 13 of 13
  1. #1
    Join Date
    Jul 2003
    Location
    India
    Posts
    51

    Vox To Wav Converter

    Hi,

    I have to develop a Voice Logger for which I need to convert a Vox file to Wav file. There are such programs available on net but most of them are standalone applications with a user interface. I want to write a program to do this conversion. Can anyone tell me where i can find source code (program) that does this conversion or else an algorithm with the help of which I can write the program.

    Thanks and regards,
    Gunjan Mishra.

  2. #2
    Join Date
    Dec 2001
    Location
    Greece, Athens
    Posts
    1,015
    Here is some code, in an Intel's web page (in C):
    LINK1
    Regards,
    Theodore
    Theodore
    Personal Web Page (some audio segmentation tools): www.di.uoa.gr/~tyiannak

  3. #3
    Join Date
    Jul 2003
    Location
    India
    Posts
    51
    Thanks for the reply.

    I have explored this link before and the vox to wav conversion using this file/exe was ineffective. All I could hear after the conversion was "noise". There are various sampling rates and compression ratios that are used while creating Vox files and the C file in this link does not specify as to which type of Vox file can be converted through this exe.

    Is there any other website where I can get help on this?

    Gunjan

  4. #4
    Join Date
    Jun 2005
    Posts
    5

    Re: Vox To Wav Converter

    Hi Gunjan,

    I'm wondering if you found what you needed, because I'm looking for a way to play a vox file (uLaw,8000 mono) through the computer's speakers rather than over the phone line.

    Thanks!
    Bob

  5. #5
    Join Date
    Sep 2005
    Posts
    4

    Re: Vox To Wav Converter

    It is going to take more information to properly help you. Like where did the vox file come from. It is ADPCM or compressed using alaw , ulaw ?

    There are a multitude of different options for compression of vox files and you would have to use that specific decompression to be able to get proper output, ie. Dialogic ADPCM and Brooktrout ADPCM are different in their bit structutres.

    if you can provide more info about the source vox file I might be able to help you.
    Last edited by Liqdfire; September 1st, 2005 at 01:44 PM.

  6. #6
    Join Date
    Jun 2005
    Posts
    5

    Re: Vox To Wav Converter

    Thanks Liqdfire,

    I'm using Dialogic, I don't think it's ADPCM. When I use a program like GoldWave to open it, I have to specify ulaw, sampling rate 8000, mono.

    Thanks for any help you can give.
    Bob

  7. #7
    Join Date
    Sep 2005
    Posts
    4

    Re: Vox To Wav Converter

    Quote Originally Posted by BobishKindaGuy
    Thanks Liqdfire,

    I'm using Dialogic, I don't think it's ADPCM. When I use a program like GoldWave to open it, I have to specify ulaw, sampling rate 8000, mono.

    Thanks for any help you can give.
    Bob
    What language are you using ??

    I might have an example for you on decoding mulaw in c++

  8. #8
    Join Date
    Sep 2005
    Posts
    4

    Re: Vox To Wav Converter

    Ok here is the sample source code from the book "A Programmer's Guide To Sound" written by Tim Kientzle published by Addison-Wesley

    http://www.liqdfire.com/misc/audio.rar
    muLaw is the same a uLaw. It looks like a U but it pronounced mu

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:

    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
    3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
    This product includes software developed by Tim Kientzle
    and published in ``The Programmer's Guide to Sound.''
    4. Neither the names of Tim Kientzle nor Addison-Wesley
    may be used to endorse or promote products derived from this software
    without specific prior written permission.

  9. #9
    Join Date
    Jun 2005
    Posts
    5

    Re: Vox To Wav Converter

    Thanks, Liqdfire,
    Actually, I'm a VB programmer using VB.NET... been doing various forms of BASIC for about 25 years.
    Thanks for the C++ code, I don't think I'll use it though. Too much learning curve to get going with it.
    Sometimes I get C# code and can either read it or convert it, though.
    Bob

  10. #10
    Join Date
    Sep 2005
    Posts
    4

    Re: Vox To Wav Converter

    Quote Originally Posted by BobishKindaGuy
    Thanks, Liqdfire,
    Actually, I'm a VB programmer using VB.NET... been doing various forms of BASIC for about 25 years.
    Thanks for the C++ code, I don't think I'll use it though. Too much learning curve to get going with it.
    Sometimes I get C# code and can either read it or convert it, though.
    Bob

    Yeah I am a VB .Net developer as well, I am in the middle writing a complete audio compression / decopression library in VB .Net complete managed code but there is a lot of work to be done on it as of yet. If I get something new on this I will post it for you.

  11. #11
    Join Date
    Jun 2005
    Posts
    5

    Re: Vox To Wav Converter

    Cool, Liqdfire, thanks for letting me know that.
    I will look forward to hearing about it when you're ready!!
    Bob

  12. #12
    Join Date
    Nov 2005
    Posts
    1

    Re: Vox To Wav Converter

    You got the soultion for VOX to Wav Conversion? if yes can you please him with that?
    regards
    vivek

  13. #13
    Join Date
    Aug 2016
    Posts
    1

    Resolved Re: Vox To Wav Converter

    Hi,

    I worked in this file conversion long days back. I found some source in the below link, kindly check that. May be it is useful for you. The source is available in the below link.

    http://www.usefuldesk.com/convert-vo...le-conversion/


    Thanks
    Charu

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured