Converting mp3 voice recording to ulaw

I am trying to take some voice over recordings that are in mp3 format and convert them to 8bit, 8khz, mono wav files or ulaw or alaw which i believe is the format used in the phone system.  Every time i export to a file with those settings, 8bit, 8khz, mono, i get a lot of static.  What am i doing wrong?

jewbacca5252 wrote:
I am trying to take some voice over recordings that are in mp3 format and convert them to 8bit, 8khz, mono wav files or ulaw or alaw which i believe is the format used in the phone system.  Every time i export to a file with those settings, 8bit, 8khz, mono, i get a lot of static.  What am i doing wrong?
Probably nothing - it's an 8-bit file so it will have a much higher noise floor than you're used to - and it will seem even worse because it has a limited frequency response as well. At 6.02dB/bit, it can't ever have a noise floor lower than about 48dB - rather worse than a cassette recording!
With files like this, you have to optimise your audio before you save it to such a restricted format. This generally means some compression to keep the dynamic range down, and then normalizing the results to 0dB to use as much of the restricted range as you can. And no, there is absolutely no way around this at all - it's the Laws of Physics you're up against here.

Similar Messages

  • Ic Mp3 Voice Recorder - silver not black

    Hi,  I have an Ic Mp3 Voice Recorder (I can't read the sub-model as it’s too faded) though it is a silver Ic recorder.  It worked great till last week. Now when I download any recordings they show up as normal (ex: one shows as 177, 661KB and one shows 14,191KB). They are both clearly there, but when I play them back I hear no sound. Is there any way I could have accidently “muted” the device???
    Solved!
    Go to Solution.

    Hello WGB,
    Without knowing the model number of your recorder its very difficult to know what might be going on. There should be a reset button the on device that should move all your settings back to default. This would ensure any setting that may have changed to cause this would be reverted back to normal.

  • Convert GarageBand Voice Recording to Audiobook

    I'm trying to convert a Garageband voice recording to Audiobook format. The file is currently saved in iTunes music library. I want the ability to listen to the file using my iPod's Audiobook category. This way, I can listen in fast playback mode--which I don't think is available in the music category.
    iMac G5   Mac OS X (10.4.5)  

    I'm not very familiar with Audiobook formats, I think there's several of them around. If you're talking about the AAC format, here's a 4-step workaround that I found in a discussion group on the Net and that I quote without actually having tested it:
    Interestingly enough, I just figured out how to turn mp3s into audiobooks today.
    Step one...convert your mp3s into AAC files (.m4a) using iTunes
    Two...in the finder, change the file extensions for those files from .m4a to .m4b
    Three...download an audio bookmarking iTunes script from www.malcolmadams.com/itunes/scripts/ss.php?sp=makebookmarkable and install the script
    Four...Add the new .m4b files to your iTunes library, select them, and select the Bookmarking script from the Scripts menu.
    Try it and tell us if it works for you!
    (In your case, you might skip step one and export the GB file as AAC in the first place!)

  • Sony MP3 Voice Recorder

    I bought a Sony MP3 Recorder about a week before buying the MacBook as I was attending a seminar and wanted to not be too distracted by note taking. I have since discovered that I can't download the voice cuts to the MacBook to edit. I also note that Sony doesn't support Mac OSx. Does anyone know if there is some software/freeware/shareware that allows me to connect the Reorder to the USB port and view the cuts for transfer into iTunes or Garage Band for editing?
    Cheers
    Belinda

    Belinda
    I don't know if this will work with your Sony.
    It's made for Creative products,but works with others also.Give it a try.
    Worst case,it won't work and you can just uninstall the software.
    http://tinyurl.com/ysyne9
    Jim
    PowerBook G3 500 Mhz "Pismo"/ 2.0Ghz BlackBook 2GB OWC RAM   Mac OS X (10.4.9)  

  • Voice Recording - Ipod Nano 3rd Gen

    Hi,
    Recently, i saw a mini microphone in the market. At the back of the packaging, it said "This accessory is compatible with iPhone, iTouch, iPod Nano and iPod Classic by installing iTalk Recorder or Easy Recorder".
    The dealer had confired that it can be used on iPod 3rd Gen so i was so excited that my ipod finally has voice recording function. I'd downloaded both app with iTune but it cant be sync/installed to my iPod Nano...
    Can anyone pls assist me on this critical issue because i need a 2-in-1 mp3+voice recorder?

    Thank you for the reply, however, I'm using APPLE; 10.5..... op system.  I have been using this ipod with this APPLE comp for  a few years--- I read somewhere that the mobile device could be auto turned off somehow.  If I DO follow the directions for the uninstall..do I lose all my songs, etc when I put the itune.app in the trash and re-install?

  • Voice Recorder + mp3 convertion

    Ok, i'm trying to make a on line voice recorder + server upload. Today, i can do it in wav format, but i really wish to record it in mp3 or wma or other format so i can record small files. The actionscript is:
    package
    import flash.display.Sprite;
    import flash.media.Microphone;
    import flash.system.Security;
    import org.bytearray.micrecorder.*;
    import org.bytearray.micrecorder.events.RecordingEvent;
    import org.bytearray.micrecorder.encoder.WaveEncoder;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.ActivityEvent;
    import fl.transitions.Tween;
    import fl.transitions.easing.Strong;
    import flash.net.*;
    import flash.net.URLVariables;
    import flash.events.MouseEvent;
    import flash.net.FileReference;
    import flash.net.FileFilter;
    import flash.utils.ByteArray;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.display.MovieClip;
    import fl.controls.ProgressBarMode;
    import flash.events.ProgressEvent;
    public class Main extends Sprite
    private var mic:Microphone;
    private var waveEncoder:WaveEncoder = new WaveEncoder();
    private var recorder:MicRecorder = new MicRecorder(waveEncoder);
    private var recBar:RecBar = new RecBar();
    private var tween:Tween;
    private var fileReference:FileReference = new FileReference();
    public function Main():void
    recButton.stop();
    activity.stop();
    mic = Microphone.getMicrophone();
    mic.setSilenceLevel(0);
    mic.gain = 100;
    mic.setLoopBack(true);
    mic.setUseEchoSuppression(true);
    Security.showSettings("2");
    addListeners();
    private function addListeners():void
    recButton.addEventListener(MouseEvent.MOUSE_UP, startRecording);
    recorder.addEventListener(RecordingEvent.RECORDING, recording);
    recorder.addEventListener(Event.COMPLETE, recordComplete);
    activity.addEventListener(Event.ENTER_FRAME, updateMeter);
    private function startRecording(e:MouseEvent):void
    if (mic != null)
    recorder.record();
    e.target.gotoAndStop(2);
    recButton.removeEventListener(MouseEvent.MOUSE_UP, startRecording);
    recButton.addEventListener(MouseEvent.MOUSE_UP, stopRecording);
    addChild(recBar);
    tween = new Tween(recBar,"y",Strong.easeOut, -  recBar.height,0,1,true);
    private function stopRecording(e:MouseEvent):void
    recorder.stop();
    mic.setLoopBack(false);
    e.target.gotoAndStop(1);
    recButton.removeEventListener(MouseEvent.MOUSE_UP, stopRecording);
    recButton.addEventListener(MouseEvent.MOUSE_UP, startRecording);
    tween = new Tween(recBar,"y",Strong.easeOut,0, -  recBar.height,1,true);
    private function updateMeter(e:Event):void
    activity.gotoAndPlay(100 - mic.activityLevel);
    private function recording(e:RecordingEvent):void
    var currentTime:int = Math.floor(e.time / 1000);
    recBar.counter.text = String(currentTime);
    if (String(currentTime).length == 1)
    recBar.counter.text = "00:0" + currentTime;
    else if (String(currentTime).length == 2)
    recBar.counter.text = "00:" + currentTime;
    private function recordComplete(e:Event):void
    var req:URLRequest = new URLRequest("http://localhost/tests/grava.php");
    req.method = URLRequestMethod.POST;
    req.data = recorder.output;
    req.contentType = 'application/octet-stream';
    var loader:URLLoader = new URLLoader();
    loader.dataFormat = URLLoaderDataFormat.BINARY;
    loader.load(req);
    recorder.output is a bytearray, that i send to php and it writes down the wav file. Any ideas?

    Check out http://audior.ec <- flash tool that records direct to mp3.

  • How can I convert and/or import .3ga Android phone Voice Recorder files to iTunes playable format?

    My new Android smart phone (Samsung Galaxy S Blaze) has a pre-installed "Voice Recorder" which creates .3ga files of whatever I record with that app. But I can't find anyway to play or utilize them on my PC. I'm new to iTunes (for Windows Vista), and I'm hoping it can play these files somehow but when I drag them to the iTunes window the red circle with a line through it shows up and the file doesn't get transferred.  I've also tried importing via iTunes File > Add file to library > click on file on my PC, but then after a second the "Add to Library" window disappears and the Voice file is nowhere to be found in iTunes. Any ideas are welcome. I'm pretty low tech....
    Thanks!

    iDealshare VideoGo, the professional 3GA to MP3 Converter, can convert 3GA files whatever recorded from Android, Samsung Galaxy S1, S2, S3, S4, Nokia to MP3 format. Besides converting 3GA to MP3, it also can convert 3GA to WAV, M4A, WMA, AC3, AAC, FLAC, OGG, AIFF, RA, AU, DTS, MP2, APE and etc. It even supports to trim or split 3GA audio, merge several 3GA files into one, increase 3GA audio volume, batch convert 3GA files and etc.
    Furthermore, iDealshare VideoGo also can convert 3GP, 3GPP, AVI, WMV, MP4, MKV, MPG, RMVB, WTV, ASF, MOV, M4V, DV, MXF, FLV, F4V, Apple ProRes, QCP, SHN, AWB, AMR, VOC, FLAC, OGG, M4B, Apple Lossless ALAC, M4A, CAF, AIFF, APE, PCM, MPC, AU and etc.
    Step by step guide on How to Convert 3GA to MP3?

  • How do i convert a voice memo into MP3 with itunes 12?

    I need to convert a voice memo into MP3 with itunes 12.

    Today, I emailed myself an .m4a voice recording from an Android smartphone that had created that sound file minutes earlier.
    After opening that email message, I saved the .m4a sound file (a whopping 352 KB) to my Mac (iMac 21.5 inch running Yosemite).
    Clicking on the sound file's icon launched iTunes (version 12.0.1.26), which then did nothing no matter what I tried.
    However, when I selected the file on the desktop and navigated to the Finder/File/Open With dropdown window, a dialog box opened with alternative applications to use for opening the sound file. The available applications shown were VLC, QuickTime Player, Flip Player, and RealPlayer. I was pleased to find that VLC, QuickTime, Flip Player, and RealPlayer each opened and played the file straightforwardly and flawlessly.
    Apparently, Flip Player Pro (which I do not own) has a "save as" feature that might help you convert the file to the format you desire.

  • HT1550 how to convert a voice memos to MP3

    Hello,
    I need to convert a voice memo to MP3 then upload to FPT, any ideas?
    Thanks very much.

    I don't know what the format of the iPhone recordings is, but presumably it's something you can play in iTunes?
    If so: in iTunes Preferences click the 'Import Settings' button and in the top drop-down menu choose 'MP3 encoder'. You can set the bitrate etc using 'Custom settings' in the second menu if you want.
    Now drag the recordingh into the iTunes Music list. Select it, and from the Advanced menu choose 'Create MP3 version' to make an MP3 copy. You can drag this out to the Desktop and delete both it and the original from iTunes.

  • With new iTunes 12, I can no longer convert a voice memo to an mp3 file type

    Prior to the update to iTunes 12, I was easily able to convert a voice memo to an mp3 or mpeg audio file.
    With iTunes 12, if you select Create New Version, mp3 is grayed out.
    They changed it.
    Help!

    I changed Preferences>General>Import Settings to mp3 and this gave me the option to encode existing wav files to mp3. Hope this helps.

  • How can you create a voice recording and save it as an mp3?

    I want to create a voice recording and save it as an mp3.  How can I do that on the MAC?  Right now I can only think of recording the voice in iMovie, but it does not have a choice to save as an mp3.

    Rather that iMovie, you may want to check our Audacity.
    It's a free, open-source audio editor and recorder.
    You can easily save a recording as an MP3.
    http://audacity.sourceforge.net/
    Matt

  • I have a digital voice recorder with a 3.5mm mic and headphone jack and want to transfer some recorded lecture to my mac book pro.  The mac book does not have 3.5mm  jacks.  Does anyone know if a jack to USB converter would work?

    I have a digital voice recorder with a 3.5mm microphone and headphone jack and want to transfer some recorded lectures to my mac book pro.  The mac book does not have 3.5mm  jacks.  Does anyone know if a jack to USB converter would work?

    Is there a pattern to the time of day or other detail that may be
    traced back to a OS X system cause of this odd phenomenon?
    Are there any copies of system files on any of the attached USB
    external drives? Any libraries, such as iTunes, iPhoto, etc?
    Once the drives are indexed by Spotlight, are their permissions
    ignored by the OS X? Content, if neutral, should not affect the
    wake or sleep cycle; especially if they're ignored by the OS X.
    Could there be a bad cable or other component? If so that would
    be a difficult process of elimination to detect it. Usually replacing
    most suspect components in the USB stream (external to Macs)
    is a rote way to mechanically test that idea; & not 100% sure.
    Does the equipment all have a good ground to the utility or house
    electrical field? An intermittent ground may affect more than sleep.
    Hard to say at this point. Maybe a late-night talk radio guru on
    remote viewing could peer into your situation and sleuth it out?
    Sorry to have run out of ideas, but the process must be electrical
    & mechanical to some extent. - Or perhaps odd software inspired.
    Do you have any phone-home spyware items inside, just jumping
    at the chance to spill your information? Little Snitch may help.
    PS: Perhaps the computer needs to go into Apple & have a genius
    or product specialist at AASP test the unit thoroughly... BlueTooth?
    see:
    https://www.google.com/?gws_rd=ssl#q=Wake+reason:+XHC1
    Good luck & happy computing!
    edited 2x

  • How do I convert my old iPod into a voice recorder?

    PART No. MA003FB/A iPod 60GB White Model A1136 Serial No. 4J547DUSSZA purchased in June 2007 
    iPod (5th generation)—also known as iPod with video or Fifth Generation iPod 2005/2010 click wheel.
    (It is not a nano, shuffle or touch, it may be a classic or just an older iPod)
    How do I turn this iPod into a voice recorder?  What do I need to buy and will I need to update the iPod software.

    Hi Patdean,
    Yes, you can use your 5th Gen as a voice recorder. I used to do this with mine. You have to get an external microphone for it, and it has to be one that connects through the connector port, not through the headphone jack. Later generation ipods will take a mic in the headphone port, but not this one. There are several companies that make them, mine was a Belkin Tune Talk, and it worked really well. No additional software needed. To make a recording, use the wheel to go to "Extras", and plug in the mic. The voice memo recorder won't show up on your ipod until you plug in the microphone, and once it does, hit the record button, and you're good to go. Check on Amazon or someplace similar, I think these are still being made, but be sure to check compatability with your ipod, as not all dock connector microphones are compatible. Hope this helps!
    Sandygirl

  • Digital Voice Recorder for MAC?

    I recently switched from PC to MAC and am very happy I did.
    I just have 1 thing that still need to use my PC for - I use a digital recorder almost daily, and then email the recordings to different people.
    I use a Sony so I can't use it on my MAC.
    I am looking for a digital voice recorder that is as easy to use as my current one, I just plug it into my PC, open the software it came with, and it converts it to MP3 and then I attach it to the specified email and away it goes.
    I tried an Olympus but the effort it would have taken to convert it to MP3 was ridiculous.
    I would love some suggestions...
    Thanks!
    Glenyce

    I use an older Olympus myself, rather similar to this one, and though it records in WAV format rather than mp3 it is really pretty simple converting the files if you wish. The ones that Dave Sawyer links to look better for your purposes , though.
    Sony make Mac compatible recorders which record directly into mp3 these days, too, though. See here, for example. Or this one.
    eww's suggestion looks good , too.
    There are a lot of choices out there. The best selection depends on what quality level you require for the recording, how important small size is, whether you will be using external mics, how much storage capacity you need, how much you are prepard to spend, etc etc. Might be easier to refine recommendations if you could provide a bit more info about such things.
    Cheers
    Rod

  • Digital Voice Recorder iMac compatible

    Hope I'm in the right forum! Still very new to iMac and still in the process of transferring data from Windows. Each day I come across something that is not compatible - today it is my Olympus Voice Recorder which I rely on. I used to download the recording onto PC, convert the file and edit and cut - then save to iTunes. Now,that's not possible on iMac. Do you know which voice recorder I could get that is compatible with iMac. One that I can download the entire recording to and use software (which?) to cut and crop and edit etc and put into my itunes? I am guessing that there is already an application in OS X which will allow the editing - it is more a case of how to get it on the iMac to start with. Thanks. SM

    Audacity ( http://audacity.sourceforge.net/ ) in conjunction with Soundflower ( http://cycling74.com/products/soundflower/ ) will let you do most things you may need, including recording direct from web inputs.
    It'll open and edit most sound formats and the editing options are pretty good for a freebie. version 1.3.12b is pretty stable and I've not found any major bugs yet.
    Export options are also comprehensive, though for most purposes, .mp3 or .aif are all that's needed.
    There's a wiki page for it at http://wiki.audacityteam.org/index.php?title=Main_Page
    No doubt there'll be other equally valid suggestions; this is far from the only option (but it is free!)

Maybe you are looking for

  • Apple TV in "Not supported mode" on Samsung HLN467 TV

    I just got an Apple TV and I can't get it to show a picture on my (3-1/2 yr old) Samsung HLN467 DLP-type TV. The Apple TV is connected via Component video cables. I have tried Component 2 and 3 inputs on the TV, same result: "not supported mode" is a

  • HT1438 I just put in a request to send in my ipod for repairs, what is the actual address I send my iPod to?

    Just need an address to send my ipod out too.  I filled out the online form to send in my ipod, paid the bill with my visa, now I need to know "where" to send it.  Didn't see an address

  • Calling business delegate object from client

    Hi guys, I want to know how can I use Business Delegate Pattern in my client program(e.g JSP for that matter). I would really be thankful if u plz illustrate ur point thru code. One more doubt.... Can a Normal Java Bean be a Business Delegate Object?

  • Filter "Other users" to only show schems that have objects

    I searched thru the forum, but didn't see this request anywhere. It would be nice to have a preference to only display "Other Users" who actually own objects in their schema. In TOAD, there's a preference like this under Schema Browser->Data. Their p

  • Identification of version #'s

    Does anyone know if there is an easy way to identify a product's version number by Serial Number? I know for a fact for linksys/CISCO to be an accredited ISO company, this info must be easily available.. but live chat and actual phone contact with cu