Recording sounds garbled on playback

I have a customer who is using QM to do their call recordings. Recordings are done at the desktop end, and transferred to the server nightly. The problem they are experiencing when the supervisor plays back a recording from the day before, about 1 in 10 recordings sound garbled. The problem with recording quality always happens after an internal transfer to another agent.
For instance, an external caller talking to agent1 will sound perfectly fine. But when agent1 puts the caller on hold, and speak to agent2, the recording of both agent1 and agent2 degrades (similar to stuttering). When agent1 resumes call with caller again, the stuttering continues, with audio from caller being heard with a few seconds delay in response to agent1.
They've had the QM installed abt 2-3 years ago, but issue only started happening 9 months ago. The issue is random, happens to some agents, and the time of recording is scattered throughout the day.
Their LAN is very straight-forward, with separate vlans for voice and data. No SPAN/RSPAN is used. Agents are connected to various floor switches, which connects back to the core switch where the QM server, UCCX, CUCM, etc are connected to. All agents use IP handsets 7941 which is daisy-chained to their computers.
Any ideas of where I can start looking into the issue?

Hi Nisaar,
No, I haven't found the cause for this recording quality issue yet. The problem happens not just on call transfers, it sometimes happens on calls from an external number, or internal calls. The IP phone makes a copy of the RTP and sends it on to the PC which is daisy-chained. The issue also happens when playback is direct from the PC on the day of recording, prior to transfer to the server. Therefore I can't see what can affect the recording other than the phone switchport, the ethernet cable between phone and PC, and the PC itself.
I tried replicating the issue by making calls with high CPU usage and high network utilization, but was not able to replicate it. I've also checked phone settings, and it has audio packets marked with CS3 tags, and NIC has flow control enabled and priority&vlan enabled. I've gone through sqm logs and the recordings are marked for quality and archiving. I don't know where else to look.

Similar Messages

  • Can't hear recorded sound during video playback

    I take a lot of videos of my kids.  I have noticed lately that the volume is low or muffled...you can't hear what is being said even if they are screaming 6 inches away.  I thought maybe something had gotten into the microphone, etc.  I recorded a voice memo and on playback i could hear what was recorded just fine at a normal level. Now once I tried to record a video of my kids talking, it played back so low that i can't hear anything and that is with the volume turned wide open.  Not really sure what this issue could be but if the volume works fine on voice memo wouldn't it work the same on video playback? 

    Hi there AmPriSi,
    It sounds like you may be experiencing a microphone issue with your iPhone. Use the following article to help you address this issue:
    iPhone: Microphone issues
    http://support.apple.com/kb/ts5183
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Record sound and manipulate playback

    Hi there,
    we try to make a mobile app in which the user should be able to record a sound and after that it should automatically play that sound.
    This should be possible but we want to transform the sound so the voice is "sweeter" (higher).
    Is this possible?
    Has anyone already made some experience with this?
    Best
    omi

    recording sound its simple project. but it transformation may require some math skills because sound its numbers from -1.0 to 1.0
    also check this http://blancer.com/tutorials/105750/create-a-useful-audio-recorder-app-in-actionscript-3/

  • Garbled music playback in 9.0.3 - anyone else experiencing this?

    I updated to iTunes 9.0.3. Now many of the tracks in my library sound garbled when played; it's as if they were recorded at a very low bit-rate. It's affecting a high percentage of the tracks. It started after sleeping and awakening my laptop. I suspect rebooting will fix it, but haven't tried that experiment yet. It affects both mp3 and aac files.

    Never mind; my headphones weren't fully plugged-in, causing the audio amplifier to act screwy (maybe its output was partially shorted?).

  • I am using iMac OS 10.7.2 with Garageband'11 6.0.4. I can't record sound from  mixer Behringer X1622USB using USB out. when I connect the mixer to iMac via USB  appears USB Audio CODEC on Sound and preferences but no sound from mixer to iMac. Need help.

    I am using iMac OS 10.7.2 with Garageband'11 6.0.4. I can't record sound from  mixer Behringer X1622USB using USB out. when I connect the mixer to iMac via USB  appears USB Audio CODEC on Sound and Preferences but I can't get no sound from mixer to iMac only sound from iMac to mixer. I only can record sound using microphone line in. Please help.

    Eric,
    Thanks for your reply. Realtek audio works only in playback. There is a stereo mix in the mixer but the recording controls are not operable with no sliders in the mixer for any recording option. Slider controls appear to be grayed out. Can't figure out how to enable them. Downloaded newest drivers to no avail.
    The M Audio control panel has no apparent option for recording stereo mix. Adobe ignores the sound from the DVD or CD and shows flatline.
    I'm trying to record the sound from the DVD not rip the track.
    When I go to Audio Driver Setup and select Audition 3.0 windows sound, there is no input device installed.
    I'm thinking of going back to a decent internal Soundblaster card like I have on my 8 year old machine I am replacing.

  • When testing the microphone with Skype, the pla back sounds garbled.

    Problem with microphone testing Skype.  When testing the sound and play back it sounds garbled.

    Hello,
    Thanks for your post!
    What computer model do you have? Are you using the internal MIC or any external one? Have you checked the volume of that mic and try to decrease it? Also low down the volume from your speakers or from your default playback device.
    What operating system do you have?
    Please provide this additional information to understand more your setup and if the cause of it is settings related.
    By the way, did it worked before? If its the first time, you can also try to update the sound driver or even remove it from device manager and having the device detected again, maybe in that way it will resolve the problem.
    Thanks,
    I work for HP! Please remember to provide and if this helped click ON

  • How to record sound with Java Sound?

    I just want to record a clip of sound and save it to a WAV file. I exhausted the web but didn't find a tutorial. Would someone be kind enough to give me a tutorial or a sample code? The simpler the better. Thanks.

    Here's the code I used to record and play sound. Hope the length do not confound you.
    import javax.sound.sampled.*;
    import java.io.*;
    // The audio format you want to record/play
    AudioFormat.Encoding encoding = AudioFormat.Encoding.PCM_SIGNED;
    int sampleRate = 44100;
    byte sampleSizeInBits = 16;
    int channels = 2;
    int frameSize = 4;
    int frameRate = 44100;
    boolean bigEndian = false;
    int bytesPerSecond = frameSize * frameRate;
    AudioFormat format = new AudioFormat(encoding, sampleRate, sampleSizeInBits, channels, frameSize, frameRate, bigEndian);
    //TO RECORD:
    //Get the line for recording
    try {
      targetLine = AudioSystem.getTargetDataLine(format);
    catch (LineUnavailableException e) {
      showMessage("Unable to get a recording line");
    // The formula might be a bit hard :)
    float timeQuantum = 0.1F;
    int bufferQuantum = frameSize * (int)(frameRate * timeQuantum);
    float maxTime = 10F;
    int maxQuantums = (int)(maxTime / timeQuantum);
    int bufferCapacity = bufferQuantum * maxQuantums;
    byte[] buffer = new byte[bufferCapacity]; // the array to hold the recorded sound
    int bufferLength = 0;
    //The following has to repeated every time you record a new piece of sound
    targetLine.open(format);
    targetLine.start();
    AudioInputStream in = new AudioInputStream(targetLine);
    bufferLength = 0;
    for (int i = 0; i < maxQuantums; i++) { //record up to bufferQuantum * maxQuantums bytes
      int len = in.read(buffer, bufferQuantum * i, bufferQuantum);
      if (len < bufferQuantum) break; // the recording may be interrupted
      bufferLength += len;
    targetLine.stop();
    targetLine.close();
    //Save the recorded sound into a file
    AudioInputStream stream = AudioSystem.getAudioInputStream(new ByteArrayInputStream(buffer, 0, bufferLength));
    AudioFileFormat.Type fileType = AudioFileFormat.Type.WAVE;
    File file = new File(...); // your file name
    AudioSystem.write(stream, fileType, file);
    //TO PLAY:
    //Get the line for playing
    try {
      sourceLine = AudioSystem.getSourceDataLine(format);
    catch (LineUnavailableException e) {
      showMessage("Unable to get a playback line");
    //The following has to repeated every time you play a new piece of sound
    sourceLine.open(format);
    sourceLine.start();
    int quantums = bufferLength / bufferQuantum;
    for (int i = 0; i < quantums; i++) {
      sourceLine.write(buffer, bufferQuantum * i, bufferQuantum);
    sourceLine.drain(); //Drain the line to make sure all the sound you feed it is played
    sourceLine.stop();
    sourceLine.close();
    //Or, if you want to play a file:
    File audioFile = new File(...);//
    AudioInputStream in = AudioSystem.getAudioInputStream(audioFile);
    sourceDataLine.open(format);
    sourceDataLine.start();
    while(true) {
      if(in.read(buffer,0,bufferQuantum) == -1) break; // read a bit of sound from the file
      sourceDataLine.write(buffer,0,buffer.length); // and play it
    sourceDataLine.drain();
    sourceDataLine.stop();
    sourceDataLine.close();You may also do this to record sound directly into a file:
    targetLine.open(format);
    targetLine.start();
    AudioInputStream in = new AudioInputStream(targetLine);
    AudioFileFormat.Type fileType = AudioFileFormat.Type.WAVE;
    File file = new File(...); // your file name
    new Thread() {public void run() {AudioSystem.write(stream, fileType, file);}}.start(); //Run this in a separate thread
    //When you want to stop recording, run the following: (usually triggered by a button or sth)
    targetLine.stop();
    targetLine.close();Edited by: Maigo on Jun 26, 2008 7:44 AM

  • Can you record sound using a USB 6211 and convert the data to a .wav (or other sound) file?

    Hello,
    I am trying to build a system that will use a USB 6211 to record sounds from multiple electret microphones and then save the data as a .wav file or other sound file.  I have already built my mics and hooked the mics up to the USB 6211; the DAQ device seems to do an adequate job recording the signal - I've recorded from 3 mics at a time at 11,025 Hz, although I don't know how good the signals are since I can't save them for playback after the fact, and they aren't going through my sound card. Ultimately, I would like to save the data as a multichannel audio file which I could then open in a program such as Audacity for further editing and analysis. Since Audacity can import a variety of sound files, my file format doesn't need to be .wav if another format would work better.
    Any advice would be appreciated.
    Thanks, Eric

    If you are sampling all three simultaneously, your highest frequency recordable will be (11,025/2)/3, so about 1800Hz and that will pretty coarse (traditionally digital sound recording is at 44Ks/s at the low end). As to converting to a .wav, there are functions on the "Graphics and Sound" palette for saving waveforms to a .wav file.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • Recording sound between applications.

    On my old G4 Mac running Tiger I used a free programme called Soundflower to record audio from any program into a recording app like Audacity or Garageband. Now I am using OS X Yosemite and Soundflower is not compatible. Is there a viable alternative? I looked on the App store and on-line, where there are alternatives, but after downloading them as trials they don't really work.
    Soundflower was perfect as a conduit to let me record sounds coming from the computer and I miss not having that ability for the work that I need to do.
    Many thanks.

    Your subject mentions switching between sound playback applications, but the details in your message only mention a problem occurring when you open/close the laptop screen. Tell us more about the sound application switching you mentioned.
    Did you perform a recovery because of this symptom, or did the symptom appear after you performed the recovery?  And are the videos that you're watching on DVD media or are you streaming them in a web browser.
    Jim

  • How to save an recorded sound???

    Hi....am a newbie...
    I have created an application in J2ME that records sound and plays it back.Have tried in real mobile.Its working fine.
    I want to save that recorded sound somewhere in the mobiles drive so that i can hear it later.
    Please help and advice.
    It would be of great help.
    Thanks.

    hi, i am new to j2me n wrking on the same project.plz can to help me in recording the voice n playback in mobile by provind the code for recording the voice.
    Thanks you

  • Hi-I have an old Adobe Audition 1.5 and I used to be able to hear as I was recording. After updating computer and reloading Adobe Audition 1.5, can no longer hear as recording but only on playback. Please advise.

    Hi-I have an old Adobe Audition 1.5 and I used to be able to hear as I was recording. After updating computer and reloading Adobe Audition 1.5, can no longer hear as recording but only on playback. Please advise.

    All the monitoring is done through your sound device, not Audition. When you updated your PC, the sound device playback settings would have been reset. One of them includes input socket monitoring, and it's this that you need to reinstate. Since we don't know what sound device you are using, that's as much as we can tell you, except that if it's an internal device, you'll need to open the volume control options and alter it there. This varies between OS versions though...

  • How to fix flash player, it recognizes my microphone, but doesn't record sound on websites?

    We shortly I wanted to record something on http://www.musipedia.org/microphone.html so it asked me to allow usage of adobe flash player and when I wanted to record sound he didn't do it so i got to settings and checked microphone it was there and it was set on wright one os i tried to clap in front of him but chart didn't move. Next I went to audio setting on windows to check it and there microphone works fine. So my question is what is wrong why flash player won't record sound from mic? tnx in advance for replies.
    Message was edited by: Kage19

    Odd...
    I got top the linked page and set up my mic, and pressed "Record"...
    I see the "scrubber" moving to indicate that it's indeed picking up the sound from my mic, but on playback, it's dead silent.
    I've got a $90 Logitech porfessional headset with stereo noise cancelling mic, so I can say with pretty good assurance it ISN'T hardware on my end. The mic works with Skype, FaceTime, and QuickTime for recording.
    At this point I don't really know what to do.

  • Distorted / choppy recorded sound with Audigy 2 ZS and Vista 64-bit

    Hi, I wonder if anybody has any idea of why this issue is happening. First let me give you my PC specs:
    CPU: AMD Phenom II X4 940 @ 3.0 GHz
    Mobo: Gigabyte GA-M57SLI-S4 rev. 2.0
    Graphics: 2 x BFG GeForce 8800 GT 52MB
    RAM: 4 x GB G.Skill PC6400 @ 800 MHz
    Sound: Creative SB Audigy 2 ZS
    TV Tuner:? Hauppauge WinTV PVC PCI II (26xxx)
    OS: Windows Vista Ultimate 64-bit SP
    ?So here's the deal. I have no problems whatsoever with audio playback with this sound card. The issue I am having is while recording sound with it. When I record my voice via a Microphone with the Windows Sound Recorder and then play it back, my voice sounds very choppy. It sounds as if I was talking in front of a fan. The same happens with any program I try to use. If I use Audacity to record sound, the playback is also distorted / choppy. The main problem is with Skype, as I cannot use it to talk to people because they cannot understand what I'm saying because of the issue. Does anybody has any ideas why this happens? My PC is a dual boot PC with Vista 64-bit and XP 32-bit, and this issue only happens with Vista. Sound recorded plays back fine under Windows XP.
    I am using the latest drivers available for this card from the Creative site.
    I'd appreciate your help,
    Daniel

    StormPetrel wrote:
    A little bit off topic here, but 64bit does not mean more performance at all lol.
    Sure, but there are in some cases drastic performence diferences. Under a fresh installed Vista X64 i have less CPU usage, as under 32 bit. But of course X64 uses more RAM (some tasks are double 32 and 64 bit).But the main reason I have more performence is, that the games I often play, get almost a boost. Dont ask me why, but under 64 bit EAW and FOC have the same FPS as under 32 bit. But under X64 I use a bit more Details and a higher resolution. (both are 32 bit games, so its a bit funy )?______________________?Sure there are other ways to install the drivers. But if some Setup dosent work, the first thing I try is to get it via Divice Management. And as this worked for me, I dont waste time to try other methods (Had bad experience, you can break the driver faster than install it *G*)?______________________?Some Questions I have left (after a few hours undr X64 with Creative Drivers):?Could it be, that the driver causes sometimes havy CPU usage?Could it also be, that the driver causes some lags, after you copy a file (the end sound, copy is finihed, but takes more time for "final finish", than without the drivers) - I know that Vista has some problems, on some PCs with copy, and that MS has an inoficial Patch (but dosent help for my PC so far)

  • Cannot record sound, all I hear is stat

    Hello, I am trying to record what it being played through my speakers.
    Before I purchased my creative audigy sound card I went into the playback control by clicking the icon in the system tray, then clicking options and properties, then recording, then setting my output device (speakers) as input device and that let me record the sound that was being played over my speakers.
    I am trying to do that now with teh sound card but there is no suck option, I tried clicking "what you hear" and selecting that as the input device but when I do that and try to record all I hear is loud static.
    So how am I supposed to record sound that is being played through my speakers?
    -Thanks

    Help?

  • Cannot record Sounds

    When I record a clip, it won't record sound. It will record a voice over though. I know my microphone works. I've looked threw the settings and nothing jumps out at me.
    Anyone know this problem??

    I am getting the same error with EMU PatchMix with an EMU 1820.
    "Error while opening sound device. Please check the input device settings and the project sample rate"
    I have a new Win 7pro machine. Have the on-board sound disabled. Sometimes I can get Audacity input levels but only if I set Audacity from "MME" to "Windows WASAF", and "Wave (E-MU E-DSP)" to "Speakers (E-MU E DSP) (loopback)". It then records with an loopback echo.
    I have tried all sorts of session settings but cannot hit on the correct settings. For test purposes I am trying to get levels in Audacity from playback (from WinAmp) on this machine. I always get sound at the output of the 1820 with no problems.
    > I have seemed to solve the problem by matching the machines control panel sound settings with that of Audacity. <

Maybe you are looking for

  • Why does my time line marker keep frezzing. I can fix the problem by turning program off & on.

    My time line marker keeps freezing. I can fix the problem by turning the program of and then back on. Am I doing anything to cause this freezing to happen randomly?

  • Account Information Keeps Getting Lost After it is Saved

    At my office computer we have an iTunes account that is to be used at our office as well as a couple places around the world. We have entered in all of our credit card and billing information and yet, after we sign out and sign back in, when we try t

  • Analytics Report Suite Not working

    Hello: I'd like to setup an analytics report suite for an application account I've created. I don't have an Omniture Site Catalyst so I want to use the basic analytics suite included in the DPS Pro. But, when I try to write a name for the Report Suit

  • 1090T Temp monitoring question

    Hey all..Got a question..In my BIOS my CPU temp is 41c to 42c..And in windows when I run Core Temp 0.99.8 its telling me its 20c to 24c...and its the same with CPUID hardware monitor 20c to 24c..So really what do I believe?? My CPU is overclocked to

  • How to Create (CREATE MODE) for four details table.....

    Hello, I am using ADF Faces, BC for my web app. Now, I have one master, and four details table in my page. How will I automatically make them in insert/create mode, upon loading the page... Thanks.