Audition 5.5 - Help with .wav files for phone system - making a hold message PC & Mcc

Hello everyone,
     I am really frustrated trying to create a .wav file for our phone system and I was hoping someone might have some suggestions as I am new to using Adobe Audition. Our phone system will only accept .wav files for our hold messages but the tricky part is that is can only be a maxiimum streaming bit rate of 64 kbps. Everything we've created under 256 kbps becomes in-audible and I'm really not sure what to do as the current messages sound fantastic. Our current hold message is 35 seconds long and we have another one we are about to do which will be 2 minutes long (uuuugh).
- I've tried first converting the .wav file to an .mp3, lowering the bit rate to 64 kbps, then converting back to .wav but the bit rate goes up to almost 1500 kbps after re-converting.
- I've tried making the track mono, reducing the sample rate to 22k but the size ends up being somewhere between 512 and 768. If I lower the sample rate much further and convert to 8bit, the audio sounds terrible.
- I've also tried using Adobe Media Encoder, Audacity, Hand Brake, OS X Automator and a few other programs all with the same results.
- I've tried re-recording the audio on a handheld .mp3 recorder hoping the initial quality would be less (originally recorded on a PC through Audition with a external mic).
Unfortuantely, the person who used to do these conversions is no longer with the company, never documented the process and all I know is that they used to do this on a Mac. Also, the software that uplaods the files is a Linux based which is out of my area of expertise so I'm not able to tinker with it to make any headway.
** Any sort of suggestion would be greatly aprpeciated as I really don't know much about audio. I've been working on this for 2 weeks now and this is really driving me crazy. **

9ov7 wrote:
Hello everyone,
     I am really frustrated trying to create a .wav file for our phone system and I was hoping someone might have some suggestions as I am new to using Adobe Audition. Our phone system will only accept .wav files for our hold messages but the tricky part is that is can only be a maxiimum streaming bit rate of 64 kbps. Everything we've created under 256 kbps becomes in-audible and I'm really not sure what to do as the current messages sound fantastic. Our current hold message is 35 seconds long and we have another one we are about to do which will be 2 minutes long (uuuugh).
- I've tried first converting the .wav file to an .mp3, lowering the bit rate to 64 kbps, then converting back to .wav but the bit rate goes up to almost 1500 kbps after re-converting.
Eugh! Converting to MP3 is absolutely not the thing to do!
- I've tried making the track mono, reducing the sample rate to 22k but the size ends up being somewhere between 512 and 768. If I lower the sample rate much further and convert to 8bit, the audio sounds terrible.
- I've tried re-recording the audio on a handheld .mp3 recorder hoping the initial quality would be less (originally recorded on a PC through Audition with a external mic).
Okay, in reverse order: I know it sounds daft, but actually you want to start with the best recording you can possibly have. You are going to have to reduce its bit rate, but if you reduce a crap signal's bit rate, it inevitably ends up worse than reducing a good signal's one; when you think about that for a moment, it's going to make sense (I hope...).
As for what you need to do - well it's going to have to be a mono file anyway (you haven't got a stereo telephone system), and that will immediately halve the streaming rate, but the other thing you need to bear in mind is that telephones have a limitited bandwidth, and that your sample rate, even at 22k, is going to give you more bandwidth than the system has. If you can reduce it to 8k, it will work fine. This will still give you an upper frequency limit of 4kHz, and that's more than adequate for telephone speech, believe it or not...
The other thing, and this is where I think you may be running into trouble, is that 8 bit streaming is pretty much the norm here. All it does is to increase the noise floor, so that the signal to noise ratio is about 48dB instead of the 96dB it would be with a 16-bit signal. But, to get this to work to your advantage, you have to optimise the audio you are using in the first place. Chances are that you need to compress your recording so that it has a relatively limited dynamic range before reducing it to 8-bit, and then you'll be fine. This is better anyway for telephone systems - there's far less chance of bits of the message being missed because they're too quiet. Also, you don't want massive great peaks in the recording - these just reduce the maximum overall level for the majority of the message sound. So, you need to apply a limiter to get rid of them, leaving the majority of the speech sounding just as good, only louder. All of this you can easily do in Audition - don't need any other software at all.
So, my guess is that the previous maker of your messages knew exactly what he was doing. Yes, he could have documented the basic steps, but he couldn't have been absolutely specific about it because no two recordings are the same. I'll attempt to explain the basic steps in English, but how well you will be able to follow this, I'm not sure...
The basic process I'd go through with the recordings is firstly to normalize them to 0dB, then look at how far down most of the 'green' parts are - this is the bulk of the signal, and where all of the meaning is. Then, you apply a limiter to this so that those green parts don't have peaks sticking out of them. Then, if you need to, normalize again so that the green part moves to the upper part of the waveform space (towards where 0dB is). Then, if you need to, apply compression to the signal so that the level of it sounds about the same all through the message.
Now, when you reduce your signal to mono, 8k, and 8-bit, pretty much everything about the original signal will still be there. That should stream 8-bit words at 8k, making 64k streaming for a single mono channel. This will work fine, but only if you optimise the signal first - otherwise no chance!

Similar Messages

  • Help with wav files

    To whom this may concern, can you please help me with this problem!
    I am trying to pass a wav file without the header just the data into a Vector in Java.
    I need to convert this Matlab (adaptive decorrelation filter) file into Java.
    function [v1, v2, a, b, c] = adf(y1, y2, mu1, mu2, delay, Na, Nb);
    %[v1, v2, a, b, c] = adf(y1, y2, mu1, mu2, delay, Na, Nb) implements the
    %adaptive decorrelation filter. The Lx1 vectors y1 and y2 are microphone
    %signals, mu1 and mu2 are ADF stepsizes, delay is any constant delay that
    %the microphone signals might have incurred, and Na and Nb are the ADF
    %filter lengths. The function returns the separated signals in v1 and v2,
    %and the ADF coefficients in a and b.
    a = zeros(Na, 1); %ADF coefficients
    b = zeros(Nb, 1); %ADF coefficients
    L = length(y1); %lenght of Microphone signals
    vvec1 = zeros(Nb, 1);
    vvec2 = zeros(Na, 1);
    yvec1 = zeros(Nb, 1);
    yvec2 = zeros(Na, 1);
    v1 = zeros(L, 1);
    v2 = zeros(L, 1);
    for i = 1+delay: L
    yvec1 = [y1(i); yvec1(1: Nb-1)];
    yvec2 = [y2(i); yvec2(1: Na-1)];
    v1(i) = y1(i-delay) - yvec2'*a;
    v2(i) = y2(i-delay) - yvec1'*b;
    vvec1 = [v1(i); vvec1(1: Nb-1)];
    vvec2 = [v2(i); vvec2(1: Na-1)];
    a = a+mu1*vvec2*v1(i);
    b = b+mu2*vvec1*v2(i);
    end
    c =[1;zeros(Na+Nb-2, 1)] - conv(a,b); %impulse response of C(Z) = 1 - A(Z)B(Z)

    To whom this may concern, can you please help me with
    this problem!
    I am trying to pass a wav file without the header just
    the data into a Vector in Java.Piece of cake until you reach conv. -:) Convolute right.

  • Help with wav file, stop and play buttons

    Hey everyone,
    I'm new to actionscript, and flash for that matter. I created
    a new flash file, and a new layer. On that layer I put 2 buttons,
    btnPlay and btnStop.
    I found some code on this forum, and tried it, but it isn't
    working. The code is below. I get no errors, but when I test the
    movie, it doesn't play any music. I selected this layer, selected
    frame 1, and put this code in the actions window.
    mySound = new Sound();
    btnPlay.onRelease = function () {
    mySound.attachSound("adagio");
    mySound.start(0);
    btnStop.onRelease = function() {
    mySound.stop("adagio");
    I should also note, I have another layer with a movie clip on
    it, and another layer with a picture on it.
    Any help would be appreciated,
    Thanks,
    Jesse

    As another note--I right clicked on the wav file in my
    library and selected linkage and export to first frame as well as
    export for actionscript (and named the linkage "adagio"). Might
    help with a solution.

  • Need help with batch file for javac.exe and java.exe

    I have this in my batch file:
    c:\jdk1.3.1_05\bin\javac
    What symbol do I need to be able to run this from cprompt with any file following it

    Thanks could remember that for nothing

  • Need help with saving file for printer

    I am using Acrobat 9. I have a document with four pages. I need to save it in two files-- one file with p. 4 and 1 side by side to print on 11 x 17 paper, and the other file with p. 2 and 3 the same. The person printing does not have Acrobat so the pdf itself has to be formatted this way so they can print it. I can rearrange the pages, delete pages, and so forth, but I cannot get them to display side by side except in a "view" option.
    Thanks for any help.

    Thanks could remember that for nothing

  • Help with exporting file for print

    Hello,
    I'm trying to print a banner through Spoonflower (a site that lets you print on fabric). They recommend an RGB, 150dpi file. (max 58" wide x 288" long, 40MB) and accept a wide variety of file types (ai, svg, eps, tif, png, jpeg).
    My banner is rather large, at 50" wide x 236" long. The artwork was created in Illustrator, and consists of 2 colors with flat, line illustrations; no gradients, linked files, etc. File is about 1 MB. Because of Illustrator's canvas size limitations (227.5"), I set up my final artwork at half size (25" x 118" @ 300dpi) with the intention of scaling it in Photoshop to full size @ 150dpi.
    Unfortunately, when I try to open the AI, EPS or PDF file directly in Photoshop, it compresses the artwork to 22.6" x 106.67" (from 25" x 118" - no idea why) and this throws off the layout of the banner, which is designed to fit a very specific framework. It means my artwork, when at 150dpi, is only 45" wide (I need it to be 50").
    Next I tried exporting as a jpeg but keep getting the following error: 'The file could not be written due to error.'
    When trying to export to PNG, I get this error: 'Could not complete the operation. The rasterized imag exceeded the maximum bounds for saving to the PNG format'.
    I am at a total loss for how to proceed and would be so terribly appreciative if anyone could provide some insight...perhaps how to prevent the files from shrinking when rasterized by PS, how to actually save as a jpeg, png, or just a better way to go about this whole process altogether. What am I missing??
    And of course, I needed to send this to the printer today to meet deadline...sigh.

    If the site accepts .ai or .eps files why are you trying to move to a raster format at all?

  • Need help with Manifest file for jar

    I am creating an executable jar for a document management application. In the manifest file there is a Class-Path setting. I will be running this app in multiple environments and I want this Class-Path setting to read from the machines classpath. How do I do it? Any help is greatly appreciated.

    Before you Jared your classes, did the classes work?
    One possible solution would be to include the classes you're using within the Jar itself. But before you do that, I would re-read the Licence agreement for those classes.

  • Exporting Audition .wav files for ProTools correctly????

    I'm currently using Audition 3.0, recording multiple live tracks (around 20 instruments at one time) in multitrack mode. While thes e tracks are recording live, Audition is creating the .wav files (source files) in a specified folder....correct?  Now, I've recorded/captured the audio/wav files for the project, and I now want to export these .wav/source files onto a portable hard drive and load (import) them into ProTools for final mixdowns. What are the correct steps in exporting the Audition .wav files, in the right ProTools format, so that ProTools will recognize them properly and open in a PT session?
    I found a post on your forum about this saying:
    "Audition will export files directly in PT's restricted 24-bit format as well if needed (Audition's norm is 32-bit floating point)."
    I have another person doing our mixdown using ProTools, if you're wondering why I'm asking this and not using Audition for the mixdo wn.
    Thank you for your time and I look forward to hearing back from somebody on how to do this.

    You can easily use Audition's "Batch Processing" tool to convert your 32-bit source files to a ProTools compatible 24-bit format.  Switch to "Edit View" and click File > Batch Processing...  In the dialog that comes up, click the "Add Files" button and select the WAV files recorded for your session.  (These files will be in a subfolder of where you saved the original session, named "<session name>_Recorded"  For example, if you created your session in \My Documents\Adobe\Audition\3.0\My Session\  the recordings will be stored in \My Documents\Adobe\Audition\3.0\My Session\My Session_Recorded\ )
    After the files are loaded, click the "New Format" tab and set the Output Format to "Windows PCM (*.WAV)" then click the Format Properties button and choose "24-bit packed int (type 1, 24-bit)"  and click OK.  Click the "Destination" tab and choose a folder to collect the new files, and click "Run Batch."
    After the conversion process has completed, you should be able to send those files to your ProTools engineer for mixing.

  • Can some help with CR2 files ,Ican`t see CR2 files in adobe bridge

    can some help with CR2 files ,I can`t see CR2 files in adobe bridge when I open Adobe Photoshop cs5- help- about plugins- no camera raw plugins. When i go Edit- preference and click on camera raw  shows message that Adobe camera raw plugin cannot be found

    That's strage. Seems that the Camera Raw.8bi file has been moved to different location or has gone corrupt. By any chance did you try to move the camera raw plugin to a custom location?
    Go To "C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS5\File Formats" and look for Camera Raw.8bi file.
    If you have that file there, try to download the updated camera raw plugin from the below location.
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5371&fileID=5001
    In case  you ae not able to locate the Camera Raw.8bi file on the above location, then i think you need to re-install PS CS5.
    [Moving the discussion to Photoshop General Discussions Forum]

  • Having trouble with wav files and sample rates

    Hi ,I am having trouble with wav files and sample rates .I have been sent multiple projects on wav as the main instrumental ; I wish to record in 48.000kHz .Now comes the problem.When I try to change the project to 48k It seems to pitch up the track.I can't have them send the logic/project file as most have outboard synths,different plug ins etc.This particular case the producer has recorded the synth task in 41.000 kHz .My successful outcome would be to be able t create a project file in 48 kHz .And NOT pitch up whne I add the instrumenta wav file .Any help would be gratefully recieved,this is my first post so any mistakes I may have made go easy 

    You'll have to convert the actual synth audio file file that the producer gave you to 48kHz. You can do this in the audio Bin in Logic.

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • HELP HELP HELP with adminstrator password for pavilion dv7 beats audio

    Hi. I need help with  adminstrator password for pavilion dv7 with window 7. I don't remember with is the  adminstrator password for pavilion dv7 beats audio. Is there anyway you can help me with this? once i enter 3 times is gives me this system disabled code: 52464663.  

    Hi
    Try this Key : 43542265 That should fix your issue 
    Hope this helps.
    ***** Click the KUDOS Thumbs UP (Like) on the left to say 'Thanks'*****
    ****Make it easier for other people to find solutions, by marking my answer “Accept as Solution”&"Kudos"if it solves your problem.****
    -VJ
    Although I am an HP Employee, I am speaking for myself and not for HP.

  • Opensource Software to edit and play wav files for CUCM and CCX

    Helo everone.
    I would like to konw a opensource or free software to edit, play and codec wav files for prompts in CUCM and CCX.
    Thank you.
    Best Regards.

    I autoanswer myself.
    http://www.hongkiat.com/blog/25-free-digital-audio-editors/
    I'm cheking audiocity and is very easy to use.
    Regards

  • Help with Simple Applescript for Midipipe

    Hey all, I'm in desperate need of help with some Applescript for use in a program called Midipipe:
    http://web.mac.com/nicowald/SubtleSoft/MidiPipe.html
    I simply require an Applescript for Midipipe that filters out all OFF notes except for the most recently pressed key, or most recently pressed ON note. So for example, when multiple keys have been pressed, only the most recently pressed key will send an OFF note. I hope that is clear enough, i've had some major issues trying to get this work and my last hope is to hit the forums and find some help .. I've posted on some of the audio forums and i'm hoping someone here knows how to code this.
    Thanks so much!! .. Its for an upcomming show next week so i'm hoping someone can get me in the right direction to solving this.
    -Jes

    I try to help, but you'll need to apply your brain cells to get it working with what I've already explained (three times with what I offer below).  Try something like the following (I am renaming your buttons to ch1,ch2,ch3,ch4,ch5,ch6 so that the same functions can be shared by all buttons...
    // this assigns listeners to all 6 buttons
    for(var i:uint=1; i<7; i++){
              this["ch"+String(i)].addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint);
    // this processes any one of the 6 btns when they are clicked
    function fl_ClickToSeekToCuePoint_1(event:MouseEvent):void
        var btn = event.currentTarget;
        var cuePointInstance:Object = vid.findCuePoint(btn.name);
        vid.seek(cuePointInstance.time);
       resetButtons();    // this makes all buttons go back to normal
        btn.upState = btn.overState; // this makes the clicked button change states
    function resetButtons():void {
         for(var i:uint=1; i<7; i++){
              this["ch"+String(i)].upState =  this["ch"+String(i)].hitTestState;
    For this to work, your buttons need to have the same artwork in the hit frame as they do in the up frame.

  • I still need help with the Dictionary for my Nokia...

    I still need help with the Dictionary for my Nokia 6680...
    Here's the error message I get when trying to open dictionary...
    "Dictionary word information missing. Install word database."
    Can someone please provide me a link the where I could download this dictionary for free?
    Thanks!
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

    oops, im sorry, i didnt realised i've already submitted it
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

Maybe you are looking for

  • Mail not working after upgrading to Lion

    I have recently upgraded to Lion and my Mail program will not open. I get a message that says that "You can't use this version of Mail with this version of Mac OS X. You have Mail 4.5".  I would have thought that Lion would have installed the latest

  • Satellite L500-17L - How can I find it on the Toshiba website?

    Yesterday i found the description about this notebook - Toshiba Satellite L500-17L but I cant find it on the toshiba's site. How can this be? And there is a lot of information about this one on the web

  • Upgrading OS

    I have an older MacBook Pro, running OS X  10.5.8. My local support shop tells me they can't help me upgrade any further and I need some basic info about how to proceed. Can my MAC be upgraded or is it too old? If it can be ugraded, where do I obtain

  • Cant find the paired tab

    Hi there I cant find the paired tab for my E71. I am not new to this and am totaly stumped!

  • Is it possible to turn of the touch screen on my T410s?

    I have a T410s and i think that the processing speed of my computer is slowed by having the touch screen on constantly even when not in use. Is there a way to turn it off when im not using it? Even if the processing speed isn't lowered I still would