Converting "FLAC" and other Audio Format files from Vuze to iTunes

Good afternoon. I have a Mac Book computerthat I purchased about two years ago.  I have ITunes loaded on mycomputer. I use Vuze as a software program to download music and video toITunes.  However, it appears that iTunes will not concert "FLAC"and other formats of audio from Vuze. Can anyone recommend what free softwaresoftware program is preferable to use to convert the "FLAC" and otheraudio formats from Vuze to use in iTunes?  Thank you in advance for anyassistance you can provide concerning this issue.

I have used xACT in the past, and I now use Max for all my FLAC conversion needs. If you need to tag the FLAC files before conversion, Tag is basic but good.
For conversion inside iTunes you might want to check out Quick Convert from Doug's AppleScripts.

Similar Messages

  • How to play FLAC and Other Lossless Formats on iTunes for Windows Vista x64

    Is it possible?
    If so, how?

    iTunes cannot play FLAC or any other lossless format other than Apple Lossless or WAV. If your tracks are in FLAC or another format, you'll have to convert them with another utility to a format iTunes can support: AAC, MP3, WAV, AIFF, or Apple Lossless.
    Regards.

  • Splitting an MP3 or other audio format files

    Hi, guys. I dont even know if I am discussing this under the right category but I hope someone can help. I have a Mac Pro, which I just acquired. I have been used to Window PCs all my life. I am trying to see if I can if there is a way I can split a large audio file into a smaller clip on the Mac. I dont even mind if this means I have to download an additional program. I am trying to use an audio track I already converted into an MP3 version as a ringtone on my phone. But I dont like the was the song starts from the beggining. I am trying to create a 1-minute audio clip out of the long track and use that. I'll appreciate all the advice I can get.

    answered.

  • Merging and saving audio capture + file from disk

    Hi,
    I need to combine an audio file (read from disk) with an audio capture from a microphone and save the combined audio to a file.
    I created processors for both, merged the data sources and created a processor from the merged data source.
    If I use that as an input to a player, it seems to play OK : I hear the combination of the audio file and the microphone over the speakers (albeit with a delay of the microphone input).
    But when I try to save this merged processor's data source (I tried 2 different ways based on samples I found) I get the following exceptions respectively
    writeToFile
    javax.media.NoDataSinkException: Cannot find a DataSink for: com.sun.media.multiplexer.RawBufferMux$RawBufferDataSource@121cc40
         at javax.media.Manager.createDataSink(Manager.java:1894)
         at soundTest.MergeTest4.writeToFile(MergeTest4.java:108)
         at soundTest.MergeTest4.runTest(MergeTest4.java:70)
         at soundTest.MergeTest4.main(MergeTest4.java:207)
    writeToFile2:
    Unable to handle format: LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    Unable to handle format: LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 176400.0 frame rate, FrameSize=32 bits
    Failed to realize: com.sun.media.ProcessEngine@691f36
    Error: Unable to realize com.sun.media.ProcessEngine@691f36
    javax.media.CannotRealizeException
         at javax.media.Manager.blockingCall(Manager.java:2005)
         at javax.media.Manager.createRealizedProcessor(Manager.java:914)
         at soundTest.MergeTest4.saveFile(MergeTest4.java:83)
         at soundTest.MergeTest4.runTest(MergeTest4.java:71)
         at soundTest.MergeTest4.main(MergeTest4.java:208
    Here's the code (apologies for heavy use of static and poor error handling)
    public class MergeTest4 {
           private static final Format AUDIO_FORMAT = new AudioFormat(AudioFormat.LINEAR);
           private static final int TIME_OUT = 2000;
         private static void runTest() throws Exception {
           DataSource ds1 = getCaptureDataSource();
           DataSource ds2 = Manager.createDataSource(new URL("file:///c:/temp/test.wav"));
           Processor processor1 = Manager.createProcessor(ds1);          
           Processor processor2 = Manager.createProcessor(ds2);  
           configureAndStart(processor1);
           configureAndStart(processor2);
           DataSource[] sources = { processor1.getDataOutput(), processor2.getDataOutput()};
           DataSource mergedDS = Manager.createMergingDataSource(sources);
           Processor mergedProcessor = Manager.createProcessor(mergedDS);    
           configureAndStart(mergedProcessor);
            //This works
            Player player = Manager.createRealizedPlayer(mergedProcessor.getDataOutput());
             player.start();          
             //This does not work
             //  writeToFile(mergedProcessor);
             //  writeToFile2(mergedProcessor);
        private static void writeToFile2(Processor processor) throws Exception {
              ProcessorModel outputPM = new ProcessorModel(processor.getDataOutput(),
                    new Format[]{ new AudioFormat(AudioFormat.LINEAR)},
                    new FileTypeDescriptor(FileTypeDescriptor.WAVE)
            MediaLocator dest = new MediaLocator("file://./rec.wav");
            Processor outputProcessor = Manager.createRealizedProcessor(outputPM);
            DataSource newDS = outputProcessor.getDataOutput();
            newDS.connect();
            newDS.start();
            DataSink dataSink = Manager.createDataSink(newDS, dest);
            dataSink.open();
            dataSink.start();
          //  dataSink.addDataSinkListener(this);
            outputProcessor.start();
         private static void writeToFile(Processor processor) throws Exception {
              StateHelper sh = new StateHelper(processor);
              if (!sh.realize(10000)) {
                   System.exit(-1);
               processor.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.WAVE));
               MediaLocator dest = new MediaLocator("file://c:/temp/foo.wav");
               DataSink filewriter = Manager.createDataSink(processor.getDataOutput(), dest);
               filewriter.open();
               StreamWriterControl swc = (StreamWriterControl) processor.getControl("javax.media.control.StreamWriterControl");
               //set limit to 5MB
               if (swc != null) {
                   swc.setStreamSizeLimit(5000000);
               try {
                   filewriter.start();
               } catch (IOException e) {
                   System.exit(-1);
               // Capture for 20 seconds
               sh.playToEndOfMedia(20000);
               sh.close();
               filewriter.close();
         private static DataSource getCaptureDataSource() {
              try {
                   Vector captureDevices = CaptureDeviceManager.getDeviceList(AUDIO_FORMAT);
                    CaptureDeviceInfo audiocaptureDevice=null;
                    if (captureDevices.size() > 0) {
                         audiocaptureDevice = (CaptureDeviceInfo) captureDevices.get(0);
                    } else {
                         System.out.println("Can't find suitable audio capture device.");
                        return null;
                    return Manager.createDataSource(audiocaptureDevice.getLocator());
              } catch (Exception ex) {
                   ex.printStackTrace();
              return null;
         private static void start(Player player) {
              player.start();
              waitForState(player, Processor.Realized);
         private static void configure(Processor p) {
              p.configure();
              waitForState(p, Processor.Configured);
         private static void configureAndStart(Processor p) {
              p.configure();
              waitForState(p, Processor.Configured);
              start(p);
         private static void waitForState(Player player, int state) {
             if (player.getState() == state) {
                 return;
             long startTime = new Date().getTime();
             final Object waitListener = new Object();
             ControllerListener cl = new ControllerListener() {
                 @Override
                 public void controllerUpdate(ControllerEvent ce) {
                     synchronized (waitListener) {
                         waitListener.notifyAll();
             try {
                 player.addControllerListener(cl);
                 synchronized (waitListener) {
                     while (player.getState() != state && new Date().getTime() - startTime < TIME_OUT) {
                         try {
                             waitListener.wait(500);
                         } catch (InterruptedException ex) {
                             ex.printStackTrace();
             } finally {
                 player.removeControllerListener(cl);
         Any idea what needs to be changed for this to work?
    Thanks
    Philippe

    Drew
    Now that you've got as far as doing GUIs, you must learn to read the API. Here/s a link.
    Is it something like: out.textBox.text() ??
    Not quite. In fact, not at all. The syntax implies that out has a member textBox which in turn has a method text. That's pretty far removed from reality, isn't it?
    From the code you posted, you apparently know that out.println(...) takes a String parameter. Now go look up the API and find a method of JTextField that returns a String, that Returns the text contained in this TextComponent.
    ^Hint: it's a method inherited from JTextComponent^
    Get the text from the JTextField and pass it as a parameter to out.println. That's all there is to it.
    luck, db
    Blasted multiposter didn't have the decency to indicate here that the immediate problem was resolved, just went ahead and started a [new thread|http://forum.java.sun.com/thread.jspa?threadID=5282987].
    One for the little black book.
    Edited by: Darryl.Burke

  • My mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    my mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    Once something similar happened to me. The external drives I had set up for FCP to use for some reason were not mounted, and FCP put all its render files on the main drive and I couldn't find them anywhere.
    Go to applications, and control-click (and hold down) on your FCP icon; you should get a pop up menu that says "show package contents". Select that, select the "contents" folder, then the "mac OS" folder. See if your quicktime file is in there, or if you've got render files in the "render" folder or audio render files in the "audio render" folder that don't belong there.
    That's where FCP sticks stuff when your documents FCP project folders are not available or when external drives you've selected aren't available.

  • I recently bought two iMac quad core i5 processor speed 2.5 Ghz. Every time I use Air Drop and I send a file from one iMac to the other, a black curtain drops and I am asked to restart the computer!!! What can I do?

    I recently bought two iMac quad core i5 processor speed 2.5 Ghz. Every time I use Air Drop and I send a file from one iMac to the other, a black curtain drops and I am asked to restart the computer!!! What can I do?

    That's a kernel panic and indicates some sort of problem either with the computer's hardware or software. Visit The XLab FAQs and read the FAQ on diagnosing kernel panics. It would help to post the panic log: Mac OS X- How to log a kernel panic.
    Meanwhile, try booting the computers into Safe Mode then restarting normally. If this is simply a disk repair or cache file problem then this may fix it.
    You can also try creating a new admin account on each computer then booting into the new account. This would help determine if the problem is related to a bad file in the user accounts.

  • I imported an audio file from windows to itunes on my pc, how do i get that onto my iphone?

    I imported an audio file from windows to itunes on my pc, how do i get that onto my iphone?

    Welcome to the Apple community.
    Assuming it's in the correct format, select your phone from the device list in iTunes on your computer, select the music tab and check the music you wish to sync.

  • I have Elements 9 and cannot download NEF files from my new Nikon1 v1, any help appreciated

    I have Elements 0 and cannot download NEF files from my new Nikon1 V1, any help is appreciated.

    PSE 9 is too old for any of the versions of ACR that support the 1 V1. You have three options:
    1. Upgrade to PSE 10 or 11.
    2. Use the Nikon software to convert the raw files and send the resulting tiffs to PSE for further editing.
    3. Try the free Adobe DNG converter, and you should be able to open the resulting DNGs in your version of ACR.
    Windows:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5486
    Mac:
    http://www.adobe.com/support/downloads/product.jsp?product=106&platform=Macintosh

  • Illustrator CS5 Not the Default for EPS and other Vector Formats

    Hey everyone, the issue I'm haveing is not just with Illustrator, but sense I couldnt find a general CS5 forum, and Illustrator was the last CS5 application i noticed this for I'm hoping to find some answers here.
    So on to the issue....
    I have noticed that on other computers (Macs for sure) that Illustrator, Photoshop, Dreamweaver etc... are set as the default handlers of certain file types that are associated with each application, and as such, give each filetype there own little icons reflecting such.
    However on my system (Windows 7 Ultimate x64) this does not seem to be the case. I can go in and set them as default manually, which I have done for the filetypes I use most frequently, but I do not get to enjoy the nice icons that made for each filetype, i just get a bland, default icon that is the same for every filetype.
    Is there a way to fix this issue?
    Thanks for you help.

    Yes, I think i mentioned it before that I knew I could set the default app through Explorer (right clicking, going to "open with" etc..) but this doesn't let you use any of the custom icons that come with the adobe applications, it sets it as the default icon associated witht he particular application. I'll take a look in the properties when I get home but, but I think you may be referring to the "open with" dialogue.
    Most applications like Firefox, iTunes etc.. have a button in there preferences menu to "set as default" for all file types they can open, however I don't see such an option in any Adobe applications except for bridge, and that doesn't seem to do anything.
    Date: Thu, 8 Jul 2010 00:09:53 -0600
    From: [email protected]
    To: [email protected]
    Subject: Illustrator CS5 Not the Default for EPS and other Vector Formats
    I believe in the properties pane for one of those files it will display the default app for opening such files and you can  change it there as well and make it apply to all similar files.
    >

  • Any chance that Aperture 3 soon will support the RAW format files from Leica V-lux 3?

    Any chance that Aperture 3 soon will support the RAW format files from Leica V-lux 3?

    Were all just users here no Apple employees so no one can say (and if Apple was here they wouldn't say either)'
    It's just not the type of information Apple gives out. You can go  to Aperture->Provide Aperture Feedback to let them know you want his camera included. But when that will happen is anyone's guess.
    One strategy you can use for the time being is to shoot RAW + JPG (assuming the camera has this mode) and import both as a RAW+JPG pair making the JPG the master. Then when the RAW support comes out you can switch and make the RAW the master and process the file.
    There are other ways to deal with this until the camera is supported. Post back for more info.
    regards

  • How can I login and retrieve my user file from the trash?

    I was trying to find out where all my HD had gone, which a did using ‘What Size’.
    I found what looked like an old backup file so I put the file in the trash.
    It turns out that the file was my user file. So now I can’t login to as the user.
    How can I login and retrieve my user file from the trash?

    The Digital Editions forum is here, in case this is what you are talking about:
    http://forums.adobe.com/community/adobe_digital_editions
    If you are not, I apologize for the misunderstanding.

  • I  have a new Mac Pro computer and have migrated my files from my older computer to the new computer. In trying to open a Lightroom catalog on an external hard drive  I keep on getting the message "lightroom cannot use the catalog named " " because it is

    I  have a new Mac Pro computer and have migrated my files from my older computer to the new computer. In trying to open a Lightroom catalog on an external hard drive  I keep on getting the message "lightroom cannot use the catalog named " " because it is  not writable and cannot be opened. I have fixed all the "permissions" and yet it will still not open. How do I fix this?

    Hello Forum Members,
    I figured it out. You have to select  the actual logo of the Lightroom catalog and then click on  "get info" and allow what ever your new user name to "read and write". That worked!
    Henri Silberman

  • I had a computer crash and completed a Fresh install of Win7 and  restore of all files from Carbonite.  I have managed to get LR 5 running in LR.  However, I am not sure I have all of my previous catalogs. How can I find my catalogs to assure that I have

    I had a computer crash and completed a Fresh install of Win7 and  restore of all files from Carbonite.  I have managed to get LR 5 running in LR.  However, I am not sure I have all of my previous catalogs. How can I find my catalogs to assure that I have a complete inventory of all my catalogs.

    <moved from Downloading, Installing, Setting Up to Photoshop Lightroom>

  • Using Acrobat X and creating a PDF File from EXCEL 2010, I notice that the Pagination restarts at 1 for each Worksheet included in the PDF.

    I use Acrobat X Standard and created a PDF file from two or more worksheets using EXCEL 2010.
    The resulting PDF file restarts the PAGE # (In header/footer settings of Excel) at 1 for each worksheet.
    However, a colleague of mine who has Acrobat X Pro version, using EXCEL 2010 and same exact file does the same task, he gets a file that starts at page 1 and second worksheet continues the page # from the last page of the First worksheet.
    We both are using the ACROBAT menu (not the print to Adobe printer) to create the file so that we can get Bookmarks included in the resulting file for each worksheet.
    We cannot figure out any option in Acrobat's preferences that controls the pagination on either of these versions of Acrobat.
    So is this just a feature that works one way in Standard version and another way in the Pro version, and the user has no control over it?

    This is so sad. I read your comments and I said, "Huh?" Haha!
    I tried the indexed color option and it did make the final file smaller. Around 600KB. But there's probably another way to make it even smaller like the gazillion-paged pdf file that I mentioned that was only about 300KB.
    And by saying a layout program, does that mean like Adobe InDesign? Does that mean that I should just make my graphics in Photoshop and then import using another program and finish the file there?
    What other layout programs can I use?
    Thank you so much!

  • I just received my new Mac Mini and want to migrate files from my Time Machine. I assume the old OS is on Time machine and I don't want it to supersede the new Yosemite OS. Do I have to Do anything special?

    I just received my new Mac Mini and want to migrate files from my Time Machine. I assume the old OS is on Time machine and I don't want it to supersede the new Yosemite OS. Do I have to Do anything special?

    Using Migrations Assistant will only move the data and other things over, it will not bring over a previous version of the Os since the 2014 model can run anything earlier than Yosemite.

Maybe you are looking for

  • Error in configuring Richfaces in JDeveloper 11g

    Error in installing/configuring Richfaces in JDev 11g - while I try to add a jsp, I get the following error, can you please help? Error: Feb 20, 2010 1:53:54 PM javax.enterprise.resource.webcontainer.jsf.taglib WARNING: Can't leverage base class java

  • Adobe premiere elements 10 trial watermark question

    Hi there, I just had a question regarding the water mark in premiere elements 10. I know the watermark stays until I buy the full version. But if I was to find a full version on another computer. Can I take the file to the other computer to remove th

  • How to determine the version of xmlparserv2.jar?

    Hi, Is there any way I can determine the version of an xmlparserv2.jar file? I am using XML Parser V2 (xmlparserv2.jar) with the following file size: 1,086,234 bytes. This was supplied with JDeveloper 3.1 but I have no idea what version is it? Any he

  • Setting default value based on Link

    I have a report with a link to a form. The link is a standard portal component link. The link passes in cus_id. I would like to set the default value of the form cus_id field to the cus_id value from the link when the form is presented in insert mode

  • New Lexar USB card reader, X tells me low power

    The card reader worked fine yesterday. Today, no matter where I plug it in (usb port) or the keyboard, OS X pops up a window telling me there is low power for this device. Therefore, I can not mount the CF card in the Lexar card reader. This card did