Hi,
I'm looking for a small PCM converter tool which I can access by Dos-Console.
I have any wave-files and need always this output: PCM 44,1k, 16bit, Mono
Is there any program for this?
Thx 4 answers
i' ve a problem in doing my final project...
i'm having trouble with how to save multiple wav files into 1 wav file..
let's take an example: i have 3 wav files which are the syllables of the word "hospital" : "hos.wav", "pi.wav", and "tal.wav" (sorry if i'm wrong in determining the syllables of the words)..
each of those syllable wav files…
Hi,
I'm looking for a small PCM converter tool which I can access by Dos-Console.
I have any wave-files and need always this output: PCM 44,1k, 16bit, Mono
Is there any program for this?
Thx 4 answers
I would like to convert wav files to mp3 using the lame encoder (lame.exe). The wav files are recorded along the following specifications:
Bit Rate: 64kbps
Audio sample size: 8 bit
Channels: 1 (mono)
Audio sample rate: 8 kHz
Audio format: CCITT A-Law
If I try to convert such a wav file using lame, I get the following error message:
…
I have a folder full of .wav audio files.
Some are stereo, most are mono splits.
The mono split pairs are all named foo bar track.L.wav and foo bar track.R.wav
I can use the command line tool sox to combine a mono pair into 1 stereo track like this:
sox -M track1.L.wav track1.R.wav track1.Stereo.wav
where the first 2 files are…
In our building we have a Viking Paging ZPI-4 Interface for our intercom. The interface receives data from our Asterisk Phone system via a Cisco SPA112 Port Adapter which has it's own IP address on the network and converts digital into analog. Asterisk plays the "5" tone and then allows the user's voice to commence over the…
Greetings,
I'm trying to play a wav sound that stored in byte array called bytes.
I know that I should convert the byte array to wav file and save it in my local drive then called the saved file but I was not able to convert the byte array to wav file.
please help me to give sample code to convert byte arrary of wav sound to…
I'm trying to play a wav sound that stored in byte array called bytes.
I know that I should convert the byte array to wav file and save it in my local drive then called the saved file but I was not able to convert the byte array to wav file.
please help me to give sample code to convert byte arrary of wav sound to wav file.
…
The Flash IDE is capable of embedding many types of uncompressed sound files, including wav, and offers optional compression when publishing.
However, the [Embed] tag, only seems to allow embedding of mp3 files. Is it truly impossible to embed an uncompressed wav file, or am I missing some magic, undocumented mimeType?
I…
I am using python programming language,I want to join to wav file one at the end of other wav file?
I have a Question in the forum which suggest how to merge two wav file i.e add the contents of one wav file at certain offset,but i want to join two wav file at the end of each other...
And also i had a prob playing the my…
I have the ability to get .wav files of voice mails emailed to me, but sometimes I'll be sitting in a meeting and I need to know the content of a message without playing it out loud.
Are there any good (and, preferably, free) tools for converting .wav files to text? I know Google Voice has this capability, but I can't…
I have the ability to get .wav files of voice mails emailed to me, but sometimes I'll be sitting in a meeting and I need to know the content of a message without playing it out loud.
Are there any good (and, preferably, free) tools for converting .wav files to text? I know Google Voice has this capability, but I can't…
hello friends
I am using ffmpeg to convert amr to wav and wav to amr.Its successfully converting amr to wav but not viceversa. As ffmpeg is supporting amr encoder decoder, its giving error.
ffmpeg -i testwav.wav audio.amr (working fine)
Error while opening encoder for output stream #0.0 - maybe incorrect…
Hi,
I am using the following command to convert FLV files to audio files to feed into julian, a speech to text program.
cat ./jon2.flv | ffmpeg -i - -vn -acodec pcm_s16le -ar 16000 -ac 1 -f wav - | cat - > jon2.wav
The cat's are there for debugging purposes as the final use will be a running program…
I'm using the following vlc command line to extract first 5 minutes of audio from video file
"-I dummy -vvv --no-sout-video --sout-audio --no-sout-rtp-sap --no-sout-standard-sap --ttl=1 --sout-transcode-threads=5 --sout-transcode-high-priority --sout-keep --sout…
Hi All,
I am trying to play two .wav files in my appllication, but i am only able to play the first wav file , the second file is not at all playing.
I have added the AudioToolbox framework.
In my .h file i have included the Audiotoolbox.h file and has the…
Hi,
I would like to allow users to play recorded WAV files that stored on a server back to a Silverlight application as a client to play them.
I saw that there is a way to play a WAV file on Silverlight (here), but when i tried to impliment it, i got an…
Hi,
I would like to allow users to play recorded WAV files that stored on a server back to a Silverlight application as a client to play them.
I saw that there is a way to play a WAV file on Silverlight (here), but when i tried to impliment it, i got an…
I'm working with the iPhone SpeakHere example, and I would like to be able to play audio from either the mic (as in the example) or from a wav file. I have working code to play from a particular wav file, which looks like this:
NSString *path =…
How can I play .wav files on my website using flash .swf there are many plugins for mp3s but nothing that does .wav. It is essential that i use .wav not .mp3 and converting it is not an option.
I do not want to use the standard embed that uses…
I use Finale with the Garritan sounds to convert my music into WAV files; after that I manually load each one into Audacity and
select all
use the "normalize" effect (with default settings)
manually select the silence at the beginning of the…
I need some code example on how I would use a filepath from a harddrive location to then play a .wav sound file when opened in swing GUI.
I don't need it to show a play button, or pause or stop.
I just want it to play when I select the 'Sound'…
I am in need of a Flash swf that is capable of loading PCM WAV files via a url passed to it.
An example of the file can be found here: http://msdn.microsoft.com/en-us/library/ff512405.aspx
The swf does not need a visible interface, as it is…
Hi, I'm writing a file compressor utility in C++ that I want support for PCM WAV files, however I want to keep it in PCM encoding and just convert it to a lower sample rate and change it from stereo to mono if applicable to yield a lower file…