Converting mp3

Since no server will allow big files to be sent in e-mail we're stuck with sending mp3's which of course don't sound as good as Aiff files. My questionis: if I send an mp3 to someone for him to record his vocals on, should he convert the file to Aiff, record his voice over it, and then convert it back to mp3, send it back to me and then if I converted to Aiff would it sound as good as thouugh it had been in the Aif format all along? Or should he skip converting it to an Aiff and just record over it as an mp3 and send it to me for me to convert it back to Aiff. I guess the basic question is: does an mp3 file that is converted to an Aiff file take on all of the uncompressed and good sonic qualiites of an Aiff file or the final product be compromised in some way by the conversion process?

Just tried it and can report the following:
Dragging onto the phone in PC-Suite effects the format conversion
Dragging from Nokia Music is not supported
Dragging from Windows folder is supported
However, files thus transferred lose all related info and can be found by filename (not track name) under
Unknown Artist > Unknown Album.
It is then possible to re-enter the track info directly on the phone via Options > Song Details.
This info true for
Windows Vista Home Premium Service Pack 2
PC Suite 7.1.30.9
N95 (RM-159) V31.0.017
All this means that Nokia Music is superfluous.
History:2110i, 5110, 6210, 6310i, 6111, N80, N95, N900, C5-03, Lumia 710, Lumia 920, N9, Lumia 930
I guess I'll use DOS since nobody supports CP/M anymore...

Similar Messages

  • Need to convert MP3 in URL to play it in myspace

    Hello
    Help ! I need to convert MP3 into URL? (I have a flashfetish player on Myspace they only read url for a dj mix)
    which sites or witch converter?
    Hope to speak soon !

    there is no such thing as "converting an mp3 to a URL." a URL is a pointer to where the file resides online. iow, you have to "upload" the mp3 somewhere (typically a web site that you own), and then use that URL to point to the file.
    for example this:
    http://www.bulletsandbones.com/BBPages/History/BBMp3s/01Real%20World.mp3
    points to a file located on the bulletsandbones web site

  • Python / Audio Conversion - I want to convert mp3 to wav

    Hi, Ive dabbled very little in actual coding, wrote one python app that these forums really helped me make, and Ive programmed in VBScript and SQL Server, but all academic, nothing for my own uses.  I need a program to convert mp3's to .wav's that can then be burned in 'Recorder' to burn the audio disc.  I know there are many scripts like this floating around, but I want to do my own, problem is, im lost.  I seem to have 2 main problems, getting the file names into a list or tuple,  and then actually running the commands to convert using a for loop using lame or mpg321.
    this bash script uses mpg321 and sox,
    #!/bin/bash
    # allmp3wav
    for i in *.mp3; do
    echo "$i"
    tgt=$(echo "$i" | sed -e "s/mp3/wav/")
    mpg123 -b 10000 -s -r 44100 "$i" | sox -t raw -r 44100 -s -w -c2 - /var/cdrom/"$tgt"
    done
    This works fine and I understand the code.  Its saying for every file that ends in .mp3, run these commands, which do the coding.  The only problem is, this doesnt work in python, since its not pythong   Can someone give me a little bit of help?  Dont give me the program, or give me to much info, links would be great.
    1 - Need to Get Directory
    2 - Loop through all the .mp3 files and add them to an array.
    3 - create a sub directory named "wav"
    mkdir ~/wav
    4 - copy all the mp3's to "wav"
    cp ARRAy to wav/
    5 - convert all .mp3's to wav
    6 - delete the copied mp3's from .wav directory
    for .mp3
    rm
    7 - tell me how many wavs were created.
    for .wav
    count + 1
    That is just a rough flow chart of what I need to do, and as you can see its pretty bare as of now.  Also, I imagine to run mpg321 or lame commands, I need some sort of lame or mpg321 module?  Ive read the python wiki for for loops and lists and tuples, but I need more info.  Thanks, Justin.

    Alright that helped alot, its almost working now, I am using Popen wrong still I assume, here is what I got.
    import os
    import subprocess
    here = os.getcwd()
    ctr = 0
    for file in os.listdir(here):
        name, ext = os.path.splitext(file)
        if ext == ".mp3":
                    p = subprocess.Popen("mpg123 -w " + name + ".wav " + name + ext , stdout=subprocess.PIPE, shell=True)
                    ctr = ctr + 1
    print ctr
    That executes, but gives this error,
    High Performance MPEG 1.0/2.0/2.5 Audio Player for Layers 1, 2 and 3
    version 1.4.3; written and copyright by Michael Hipp and others
    free software (LGPL/GPL) without any warranty but with best wishes
    [readers.c:893] error: Cannot file [Beginning: No such file or directory
    [mpg123.c:516] error: Cannot open [Beginning: File access error. (code 22)
    [readers.c:893] error: Cannot file of: No such file or directory
    [mpg123.c:516] error: Cannot open of: File access error. (code 22)
    [readers.c:893] error: Cannot file Whats About to Happen] HWY 74.wav 01 [Beginni
    ng of Whats: No such file or directory
    [mpg123.c:516] error: Cannot open Whats About to Happen] HWY 74.wav 01 [Beginnin
    g of Whats: File access error. (code 22)
    [readers.c:893] error: Cannot file About: No such file or directory
    [mpg123.c:516] error: Cannot open About: File access error. (code 22)
    [readers.c:893] error: Cannot file to: No such file or directory
    [mpg123.c:516] error: Cannot open to: File access error. (code 22)
    [readers.c:893] error: Cannot file Happen]: No such file or directory
    [mpg123.c:516] error: Cannot open Happen]: File access error. (code 22)
    [readers.c:893] error: Cannot file HWY: No such file or directory
    [mpg123.c:516] error: Cannot open HWY: File access error. (code 22)
    [readers.c:893] error: Cannot file 74.mp3: No such file or directory
    [mpg123.c:516] error: Cannot open 74.mp3: File access error. (code 22)
    2
    If i remove the subprocess popen, and just print name + ext and use the counter, it prints out both file name together, and how many mp3's it processed, 2.  So i know the program is doing what I want, im just converting wrong.  Thanks again.
    here is whats in the directory, there is more then mp3's, so I know it is filtering the files properly thanks to your splittext.
    justin ~/build/convert $  dir -ls
    total 12104
      20 -rw-r--r-- 1 justin justin   17138 2008-05-19 17:59 00\ -\ Wretch.txt
       4 -rw-r--r-- 1 justin justin      44 2008-06-01 18:20 01
    7588 -rw-r--r-- 1 justin justin 7768364 2008-05-19 17:59 01\ [Beginning\ of\ What's\ About\ to\ Happen]\ HWY\ 74.mp3
       4 -rw-r--r-- 1 justin justin      44 2008-06-01 18:20 02
    4484 -rw-r--r-- 1 justin justin 4588063 2008-05-19 17:59 02\ Love\ Has\ Passed\ Me\ By.mp3
       4 -rw-r--r-- 1 justin justin    1284 2008-06-01 18:20 convert.py
    justin ~/build/convert $
    Last edited by axion419 (2008-06-01 22:23:32)

  • Why does Logic Convert MP3 to Aif and store them on Desktop?

    Gentlemen please bear with me on this probably elementary question here - (you are dealing with someone who until recently refused to stop using Logic 6 on an old but very stable G4 tower OS 9 because it worked so perfectly and still does)...
    I have found that when importing audio files( ie CD tracks or MP3s) from an external hard drive into the audio window (via Control F) , there is some sort of preference which does not simple use the original file but copies it to my desktop into a new fold called "Audio".
    In the actual song document, looking at the song path and recording path etc, everything points to my faithful La Cie external hard drive. There is obviously some extra step or song managing process included in Logic 7 which does this and which I have yet to figure out...
    Could this be something to do with the Project Manager preferences ( I never use this feature except for Save as Project when backing up a song at the end of the process when it is done and dusted)
    Any explanations gratefullly accepted
    Powerbook 5,8   Mac OS X (10.4.8)   G4 Powerbook

    I'm not sure I can help. Compressed audio files must be converted to work in Logic version prior to 7.2. Otherwise, audio files should remain in their original locations unless you've specified in you project settings to copy external files into your project folder. It gets messy working on a seesion for which there is no project folder created, in my opinion. You might just want to save your new sessions as projects, but don't check the "copy external audio..." box until you're ready to archive. That way, at least your converted mp3s will land in a tidy location.
    I partly responded to give this post a bump, becuse I'm not sure I have the answer.

  • Convert mp3 to 5.1 surround sound?

    i have a xfi and im attempting to convert a mp3 to 5.1 surround sound. When i got to do it, it says failure file conversion not supported. Am i doing something wrong or can it not be done? it only lets me convert mp3s to 2 channel.

    http://forums.creative.com/creativelabs/board/message?board.id=soundblaster&message.id=2563
    For to get mp3 saved as multichannel audio, you need to record while playing the mp3 file using Creative Media Source (play mp3 file w/ another software, on Media Source set the recording format to "WAV multichannel" and recording source to "What U Hear". You also need to set the CMSS 3D by the instructions behind the above link).
    jutapa

  • How to convert mp3 software instrument samples to format garageband can use

    Hi and thanks in advance.
    I'm using GB '08 on OSX 10.4.11 w/ a G4 MDD. ( Sorry folks,  This is the setup that I have and cannot buy a new computer or software at this time)
    I'm pretty new too DAW and all of this but want to compose music with traditional orchestra sounds as well as what GB offers.
    I have found Muse Score and I can get some pretty good results for writing but I want to expand the software instrument voices that GB has.
    I found  http://www.philharmonia.co.uk/thesoundexchange/make_music/samples/library/
    and they have some pretty good sounding software instruments for free, except that they are in mp3 format.
    I did some reading and see that GB understands a different format for this. I put some of the sounds into the correct GB folder as a test and result is of course no go. I see that GB uses exs and cst files in addition to wav and aff files.
    How do I convert mp3 software instrument samples to the formats garageband can use? Is there a way? What would I need to do this?
    Thanks again..

    The first step would probably be to convert the samples into AIFF files, that's what GB's sample files are in.
    But so far that's only a collection of samples - what you need is a sampler file that tells the software which sample to trigger with which key (the .exs files in GB's instrument library).
    Since your software is old, t works pretty well with soundfonts (the latest versions have problems), so you might try this software to create them:
    http://sonicamigos.com/polyphontics/
    All about soundfonts:
    http://www.bulletsandbones.com/GB/Tutorials/SoundFonts.html
    P.S.: The softare costs $60, but you can create 10 instruments for free.

  • Converting mp3 audio to txt for Captivate 4 project

    Hi,
    I'm working on a Captivate 4 project for which audio was recorded as an mp3 file. The audio consists of talking points for a training session. Instead of editing and splicing this large file, I was hoping to convert it to a txt file, that I could then add as slide notes and use the text-to-speech converter in Captivate 4. Does anyone know of a tool that converts mp3 files into txt files?
    Thanks.

    Hi there
    I believe Adobe Soundbooth has that capability. You might also look at Dragon Naturally Speaking as well. I'm unaware of any free tools that will do it.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Converting MP3 to WMA

    I have a new phone and it only plays WMA audio files. I cannot seem to find a converter that will convert MP3 to WMA. It seems like all the converters I find for macs do every other conversion but that one.

    Hi Makemusic,
    The only app out there for Windows media conversion so far as I know are the products offered by Flip4Mac. Specifically, the product you would be most likely interested in is the WMV Studio. It should easily accomplish your exporting needs. However, it comes with a $50 price tag. Good Luck!
    --Justin S.

  • Convert mp3 to Wav?

    Hi, i'm looking for a software that would allow me to convert mp3 to wav files. I have to upload files but the source only accepts wav files and I can't get itunes to export to wav format so your help would be much appreciated.

    I've used EasyWMA to convert audio formats before, and it may be able to do what you want. There is a limited free trial available:
    http://www.easywma.com/
    You can also try searching versiontracker.com or macupdate.com with the file types to see if there is other conversion software available.

  • Converting mp3 files to wma files

    is there a free program that will allow me to convert mp3 files to wma file. i have this phone and it has a memory card and i can play wma files ont he phone.
    so if there is any program like this, iu would greatly appretiate it.
    thanks,
    matt schey

    I forgot to mention the excellent Audacity (it's free too):
    http://www.versiontracker.com/dyn/moreinfo/macosx/15063
    Antonio

  • How can I convert mp3 from my playlist to WAV for powerpoint?

    how can I convert mp3 from my playlist to WAV for powerpoint?

    iTunes: How to convert a song to a different file format - http://support.apple.com/kb/HT1550 - including information about different formats and discussion about compression.

  • How do i convert mp3 to mp4

    My phone can only play mp4 not mp3, most of my music is mp3... How do i convert mp3 to mp4?

    Google - MP3 to MP4 converter, and then just download a suitable program. Then go about converting all the files you wish to use.

  • How can I convert mp3 to m4b in Itunes for listen on my ipod nano???

    Please, help me if you will able. I would be glad hear any advises. How can I convert mp3 to m4b in Itunes for listen on my ipod nano 6 generation???

    sorry, my mistake
    try again here.

  • How can I convert MP3 to AWB or AMR format

    How can I convert MP3 to AWB, AMR format?

    Because I faced the same issue today and although the Nokia Multimedia Converter was last updated in the year 2003, it did the trick for me. Instead of giving the setup.exe your Nokia Account, go back one step, and use this to ‘register’ that product.
    In that converter, as audio, select AMR Wideband (WB AMR) which creates .awb files. Those have a sampling rate of 16 000 Hz which is great for HD-Voice like audio books. Actually for voice-only media, I went for a bit-rate of just 12.2 kbps, still great as explained by Wikipedia. With that bit-rate only go for standard AMR if your phone does not support the wideband variant, because there is not difference in size.

  • Converting mp3 to podcast iTunes 11.1.2.31, iPhone 7.0.3

    I would like to convert mp3's to podcasts. In the past if I dragged the mp3 into music, then right clicked the file>options and changed media kind to podcast it would move that file into podcasts and when I synced it would move the file onto my iPhone as a podcast. This procedure no longer works. The new update to 7.0.3 no longer has podcasts in Music so I downloaded the Apple Podcast App. Does anyone have a solution?

    I am experiencing the same issue. I regularly change mp3 to podcasts within iTunes (change type to podcast and remember position).
    Immediately following my update to 11.1.3 (Mac, Mavericks), the files that are created no longer function on my iPhone. iTunes says that they are transferring, but when I open the podcast app, they are not there. All of my downloaded podcasts work fine, but the converted ones are no longer visible or playable.
    When I do a spotlight search on the phone, the files show, but the official podcast app and a few other podcast apps that I downloaded cannot see them. These files worked fine after the latest iOS update. It wasn't until getting iTunes 11.1.3 that this problem surface.

  • Can no longer convert mp3's to audiobook in 11.4

    Can no longer convert mp3's to audiobook in 11.4.  The option is still there, but it will no longer work.
    Please help!

    Well I figured it out. Turns out if you go to Sync(little down arrow)>DEVICE_NAME>Advanced Options>Quality if you leave it on automatic it will transfer wav files, but if you change it (I did without knowing) then the highest quality you're going to get is 92 WMA.

Maybe you are looking for

  • Report on material code, description and all unit of measure conversions

    report on  material code, description and all unit of measure conversions ? any ideas?

  • 'thin' fonts on an external monitor

    Hi, I am using an x200 with an external LG monitor 1680 x 1050, 32bit with 120DPI font. The text seems very 'thin / weak' and is a challenge to read. Is there away of 'blackening' the text to make it nore legible ?

  • Bookmark toolbar takes too muck space

    Here is screenshot demonstraiting the problem: [http://wstaw.org/m/2012/07/17/snapshot2.png Screenshot] Main Toolbar is disabled Bookmark toolbar contains a few folders and located at the top row along with the navigation buttons and page tabs. The p

  • Optimize Scanned PDF mangles the PDF

    Using this option with deskew selected duplicates the middle of the PDF and places it at the bottom, making the the PDF deskewed but useless. I have tried this multiple times and the result is always the same (Acrobat Pro v9.10) Is anyone else experi

  • How to maintain a dial up internet connection?

    I have a mac mini and a simple dial up connection. Lately I've been getting a prompt on my computer to 'stay connected', or 'disconnect'. Since I'm new to mac I can't seem to find any configuration in the preferences window of the "internet connect"