Can't load files into Library

I recently purchased an iPod and dl'd and installed iTunes. But when I tried to add my music folder into iTunes library, it runs an error message and auto closes.
Here's what's happening:
1. It opens that Adding Files dialog box and starts processing files
2. It opens the message box telling me that I have some .wma files, and I have the option of converting them to .aac
3. No matter if I hit "Convert" or "Skip", it runs for a few more seconds, then Windows pops up with an "iTunes has encountered a problem and needs to close" message.
I can load single files into the Library fine, but I can't load my full music folder into it.
What's going on?

From what you posted, one file or album is perhaps messing up the whole import.
Try adding less files at once, instead of the entire folder.
What a pain, I know!
Maybe put the wma files in a separate folder?
Then add everthing else.

Similar Messages

  • How can i load file into database from client-side to server-side

    i want to upload file from client-side to server-side, i use the following code to load blob into database.
    if the file is in the server-side, it can work, but if it in the client-side, it said that the system cannot find the file. i think it only will search the file is in the server-side or not, it will not search the client-side.
    how can i solve it without upload the file to the server first, then load it into database??
    try
    ResultSet rset = null;
    PreparedStatement pstmt =
    conn.prepareStatement ("insert into docs values (? , EMPTY_BLOB())");
    pstmt.setInt (1, docId);
    pstmt.execute ();
    // Open the destination blob:
    pstmt.setInt (1, docId);
    rset = pstmt.executeQuery (
    "SELECT content FROM docs WHERE id = ? FOR UPDATE");
    BLOB dest_lob = null;
    if (rset.next()) {
    dest_lob = ((OracleResultSet)rset).getBLOB (1);
    // Declare a file handler for the input file
    File binaryFile = new File (fileName);
    FileInputStream istream = new FileInputStream (binaryFile);
    // Create an OutputStram object to write the BLOB as a stream
    OutputStream ostream = dest_lob.getBinaryOutputStream();
    // Create a tempory buffer
    byte[] buffer = new byte[1024];
    int length = 0;
    // Use the read() method to read the file to the byte
    // array buffer, then use the write() method to write it to
    // the BLOB.
    while ((length = istream.read(buffer)) != -1)
    ostream.write(buffer, 0, length);
    pstmt.close();
    // Close all streams and file handles:
    istream.close();
    ostream.flush();
    ostream.close();
    //dest_lob.close();
    // Commit the transaction:
    conn.commit();
    conn.close();
    } catch (SQLException e) {

    Hi,
    Without some more details of the configuration, its difficult to know
    what's happening here. For example, what do you mean by client side
    and server side, and where are you running the upload Java application?
    If you always run the application on the database server system, but can't
    open the file on a different machine, then it sounds like a file protection
    problem that isn't really connected with the database at all. That is to
    say, if the new FileInputStream (binaryFile) statement fails, then its not
    really a database problem, but a file protection issue. On the other hand,
    I can't explain what's happening if you run the program on the same machine
    as the document file (client machine), but you can't write the data to the
    server, assuming the JDBC connection string is set correctly to connect to
    the appropriate database server.
    If you can provide some more information, we'll try to help.
    Simon
    null

  • Can I modify 'Load Files into Stack.jsx' for custom white balance?

    I've been wondering whether its possible to change Adobe's 'Load Layers in Stack' script so that it loads RAW files with the white balance adjustments I have made in Camera Raw ('ACR').
    At present, the script loads the files as layers with the default ACR (or Lightroom) settings. This means that any white balance adjustments to the file in ACR are ignored and the RAW file is loaded with the WB 'As Shot'.
    It IS possible to save new ACR default settings, but this doesn't really help because I don't want the WB to be a constant value. The changes I make in ACR are usually subtle and 'by eye'.
    I would like the script to be mindful of these changes when opening the RAW file.. does anyone have any suggestions?
    The script is below.
    // (c) Copyright 2006.  Adobe Systems, Incorporated.  All rights reserved.
    @@@BUILDINFO@@@ Load Files into Stack.jsx 1.0.0.1
    // Load Files into Stack.jsx - does just that.
    // BEGIN__HARVEST_EXCEPTION_ZSTRING
    <javascriptresource>
    <name>$$$/JavaScripts/LoadFilesintoStack/Menu=Load Files into Stack...</name>
    </javascriptresource>
    // END__HARVEST_EXCEPTION_ZSTRING
    // debug level: 0-2 (0:disable, 1:break on error, 2:break at beginning)
    //$.level = (Window.version.search("d") != -1) ? 1 : 0;          // This chokes bridge
    $.level = 0;
    // debugger; // launch debugger on next line
    // on localized builds we pull the $$$/Strings from a .dat file
    $.localize = true;
    // Put header files in a "Stack Scripts Only" folder.  The "...Only" tells
    // PS not to place it in the menu.  For that reason, we do -not- localize that
    // portion of the folder name.
    var g_StackScriptFolderPath = app.path + "/"+ localize("$$$/ScriptingSupport/InstalledScripts=Presets/Scripts") + "/"
                                                                                                        + localize("$$$/private/LoadStack/StackScriptOnly=Stack Scripts Only/");
    $.evalFile(g_StackScriptFolderPath + "LatteUI.jsx");
    $.evalFile(g_StackScriptFolderPath + "StackSupport.jsx");
    $.evalFile(g_StackScriptFolderPath + "CreateImageStack.jsx");
    // loadLayers routines
    loadLayers = new ImageStackCreator( localize("$$$/AdobePlugin/Shared/LoadStack/Process/Name=Load Layers"),
                                                                                                          localize('$$$/AdobePlugin/Shared/LoadStack/Auto/untitled=Untitled' ) );
    // LoadLayers is less restrictive than MergeToHDR
    loadLayers.mustBeSameSize                              = false;          // Images' height & width don't need to match
    loadLayers.mustBeUnmodifiedRaw                    = false;          // Exposure adjustements in Camera raw are allowed
    loadLayers.mustNotBe32Bit                              = false;          // 32 bit images
    loadLayers.createSmartObject                    = false;          // If true, option to create smart object is checked.
    // Add hooks to read the value of the "Create Smart Object" checkbox
    loadLayers.customDialogSetup = function( w )
              w.findControl('_createSO').value = loadLayers.createSmartObject;
              if (! app.featureEnabled( localize( "$$$/private/ExtendedImageStackCreation=ImageStack Creation" ) ))
                        w.findControl('_createSO').hide();
    loadLayers.customDialogFunction = function( w )
              loadLayers.createSmartObject = w.findControl('_createSO').value;
    // Override the default to use "Auto" alignment.
    loadLayers.alignStack = function( stackDoc )
              selectAllLayers(stackDoc, 2);
              alignLayersByContent( "Auto" );
    loadLayers.stackLayers = function()
              var result, i, stackDoc = null;
              stackDoc = this.loadStackLayers();
              if (! stackDoc)
                        return;
              // Nuke the "destination" layer that got created (M2HDR holdover)
              stackDoc.layers[this.pluginName].remove();
              // Stack 'em up.
              if (this.createSmartObject)
                        selectAllLayers( stackDoc );
                        executeAction( knewPlacedLayerStr, new ActionDescriptor(), DialogModes.NO );
    // "Main" execution of Merge to HDR
    loadLayers.doInteractiveLoad = function ()
              this.getFilesFromBridgeOrDialog( localize("$$$/private/LoadStack/LoadLayersexv=LoadLayers.exv") );
              if (this.stackElements)
                        this.stackLayers();
    loadLayers.intoStack = function(filelist, alignFlag)
              if (typeof(alignFlag) == 'boolean')
                        loadLayers.useAlignment = alignFlag;
              if (filelist.length < 2)
                        alert(localize("$$$/AdobeScripts/Shared/LoadLayers/AtLeast2=At least two files must be selected to create a stack."), this.pluginName, true );
                        return;
              var j;
              this.stackElements = new Array();
              for (j in filelist)
                        var f = filelist[j];
                        this.stackElements.push( new StackElement( (typeof(f) == 'string') ? File(f) : f ) );
              if (this.stackElements.length > 1)
                        this.stackLayers();
    if (typeof(loadLayersFromScript) == 'undefined')
              loadLayers.doInteractiveLoad();

    This is part of the script looks interesting - is there a reference where can I find more hooks? Perhaps there is one that relates to WB?
    // LoadLayers is less restrictive than MergeToHDR
    loadLayers.mustBeSameSize                              = false;          // Images' height & width don't need to match
    loadLayers.mustBeUnmodifiedRaw                    = false;          // Exposure adjustements in Camera raw are allowed
    loadLayers.mustNotBe32Bit                              = false;          // 32 bit images
    loadLayers.createSmartObject                    = false;          // If true, option to create smart object is checked.
    // Add hooks to read the value of the "Create Smart Object" checkbox
    loadLayers.customDialogSetup = function( w )

  • Can't drag video files into library - Please help!

    Just got my iPod 30G video, and while I can drag mp3 files into the Library without any problems, when I try to do the same for video files (.avi and .wmv files), nothing happens. I don't get any error messages, but the files just don't appear in the Library. What am I doing wrong?

    You must convert the videos to MP4. To do this, you must download a video converter. I got mine from Videora. Just google that name and download their full program. You will then need to convert the videos with the program and drag them to iTunes.

  • "Load files into Photoshop layers" fails to complete CS6

    Hi all,
    Hoping someone can help with the folling problem with Photoshop & Bridge CS6
    When in Bridge, after selecting 6 images (CR2) using the command TOOLS>LOAD FILES INTO PHOTOSHOP LAYERS the first file will load into Photoshop, Photoshop will then generate a second blank layer and then read the second file. At this point the "script" will stop. I am left with a document with 2 layers. The top layer has my first image, the bottom layer is empty.
    At this point when I quit Photoshop I am prompted to save this open document which appears to be the only open document. I choose not to save this as a file. I then get a dialogue box prompting to save another open document. Photoshop has loaded the second file to place as a layer but as the "script" has aborted I am left with an open, but invisible file.
    When I first loaded CS6 on Snow Leopard, it would demonstrate this behaviour every time I attempted to run this command from Bridge.
    I did a clean install on a blank HDD of OSX Lion. Installed CS6. The command worked without fail for about a month.
    Then I would get the command aborting occasionally. Restarting Photoshop would let me continue for a few hours before this aborted script problem would happen again.
    Over the last week it has become more frequent, to a point where this workflow is unusable.
    A restart of Photoshop may fix the problem for the next batch of images, only to fail again soon after, or fail on the first attempt after a relaunch of Photoshop.
    A reboot of my computer will allow my to load one or two sets of files before again failing to complete the command.
    I have tried the following:
    In Photoshop preferences:
    disabling the "Use graphics Processor"
    Increasing or decreasing the amount of RAM available to Photoshop
    Changing the cache levels or changing the cache tile size
    changing the scratch disk
    Trashing the Photoshop preferences file (Photoshop Settings.psp)
    In Bridge
    Purging the cache
    Increasing or decreasing the cache size
    Resetting Bridge preferences (holding Command on launch) and deleting all cache files.
    In general system
    Quitting extra programs (Safari, Thunderbird, iTunes)
    Sometimes this will seem to then allow Photoshop to load a full set of images, only to abort again after a few sets.
    Rebooting the computer - again will work for a few images sets before again failing.
    Now the fact that it worked fine for several weeks without presenting a problem would indicate that it is not a bug.
    The fact that is slowly started happening then became more frequent would indicate something changing slowly over time - a larger cache folder perhaps, although purging known Bridge cache folders has not filed the problem.
    Really at the end of my tether here. Even considering downgrading to CS5 - but don't want to have to use the older Adobe Camera Raw.
    System is as follows:
    Mac Pro 2 x 2.66 Quad Core
    24GB RAM
    ATI Radeon HD 4870 512
    OSX Lion 10.7.4
    I have seen a couple of others have posted having a the same problem, both with CS5 and CS6.
    Hoping someone has an answer.
    Thanks.

    Hi JJMack - I just re-read your post. For some reason I thought you were suggesting to make sure "Open documents in Tabs" was selected, it was. Now I realize you were suggesting to turn it off! As another attemp to solve this problem I did de-select it today. Seemed to work for a good while. I was getting very excited, then, on the last set of images I had to do it displayed the same problem. But, it did go for quite a while without failing, and when it did I was thrashing about trying to make another app active. When loading documents like this - with "Open documents in Tabs" de-selected, Photoshop wants to put the loading images as the front-most window, no matter what other apps (Bridge, email, web etc) I click on in the dock. I think it is related to the bug you described effecting the "load files to stack" command.
    Hopefully Adobe is looking at this - mind you, I have read reports of people having this problem in CS5! Looks like that was never resolved sadly.
    I'll keep testing and post back.
    I am looking to upgrade my video card to see if it's a video memory thing.
    What is very weird though is the fact that this problem didn't present itself until after several weeks of working with this command with no problem. No additional apps installed, nothing changed. Why would it start happening only after a while?
    Thanks again for your suggestion.

  • How can I load data into table with SQL*LOADER

    how can I load data into table with SQL*LOADER
    when column data length more than 255 bytes?
    when column exceed 255 ,data can not be insert into table by SQL*LOADER
    CREATE TABLE A (
    A VARCHAR2 ( 10 ) ,
    B VARCHAR2 ( 10 ) ,
    C VARCHAR2 ( 10 ) ,
    E VARCHAR2 ( 2000 ) );
    control file:
    load data
    append into table A
    fields terminated by X'09'
    (A , B , C , E )
    SQL*LOADER command:
    sqlldr test/test control=A_ctl.txt data=A.xls log=b.log
    datafile:
    column E is more than 255bytes
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)

    Check this out.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch06.htm#1006961

  • "Load files into Photoshop layers" completely missing from Bridge CS6

    No options to load files into Photoshop layers. Why not, and how can I put several files into one Photoshop layer?
    I'm using Bridge CS6 and Photoshop CC.

    Hi JJMack - I just re-read your post. For some reason I thought you were suggesting to make sure "Open documents in Tabs" was selected, it was. Now I realize you were suggesting to turn it off! As another attemp to solve this problem I did de-select it today. Seemed to work for a good while. I was getting very excited, then, on the last set of images I had to do it displayed the same problem. But, it did go for quite a while without failing, and when it did I was thrashing about trying to make another app active. When loading documents like this - with "Open documents in Tabs" de-selected, Photoshop wants to put the loading images as the front-most window, no matter what other apps (Bridge, email, web etc) I click on in the dock. I think it is related to the bug you described effecting the "load files to stack" command.
    Hopefully Adobe is looking at this - mind you, I have read reports of people having this problem in CS5! Looks like that was never resolved sadly.
    I'll keep testing and post back.
    I am looking to upgrade my video card to see if it's a video memory thing.
    What is very weird though is the fact that this problem didn't present itself until after several weeks of working with this command with no problem. No additional apps installed, nothing changed. Why would it start happening only after a while?
    Thanks again for your suggestion.

  • Load Files into Photoshop Layers hanging...

    I have both Bridge CS5 4.0.4.2 and Photoshop CS5 12.0.2 x64 open and running on a MacBookPro... when I highlight a few files inside of Bridge CS5, then go to Tools, Photoshop, Load Files Into Photoshop Layers, when those files start opening in Photoshop and stacking as Layers, the process just hangs and stops processing after the first Layer is placed - any ideas why this happens, or just a bug? Thank you!

    any ideas why this happens, or just a bug?
    As I can’t reproduce the issue so I would assume it’s not a bug per se.
    Have you tried trashing prefs for Photoshop (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed)?

  • Automate 'Load files into stack' and save as new file

    Hello there,
    I hope someone can help me with the following issue:
    I have 300 folders, each containing 100 images which I need to open as layers, change the opacity to 1% for every layer, flatten the image and then save as a new file. So for every folder I would need one new file generated from the 100 originals.
    I know how to do it manually, i.e. load every folder with the 'Load files into stack' command and let an action run for the rest, but that does take some time with 300 folders. Maybe someone knows how to manipulate the 'load files into stack' script so that it does the job independently.
    Thank you for your answers.

    I think you would be better off starting from scratch with a new script for the design and structure of the 'Load files into stack' script is not easy to comprehend.
    I guess that’s sound advice.
    But another point, leroybak:
    What are you trying to achieve here anyway?
    If you want to »blend a movie into one image« like a continuous exposure of the whole movie on photographic paper (and it has been done) changing all layers opacity to 1% might be not altogether the ideal route.
    Instead converting the Layers to one Smart Object and invoking Layer > Smart Layers > Stack Mode > Mean might be better in that all layers contribute to the resulting values equally.

  • Modify Load Files into Stack.jsx

    I am new to Photoshop Scripting so I am sorry if this has already been answered, but I can't seem to find out the answer or figure this one out.   I am writing a script that is doing an INCLUDE using the Photoshop script Load Files into Stack.jsx.  This script seems to name the layers the Filename.  I would like to figure out how to modify this script to not include the file name in the layer and just put Layer 1, Layer 2.  Any help would be greatly appreciated. 

    That may work, but I am not sure what to put into the script and where (sorry, yes I am new at this, this is my first attempt and Photoshop scripts).  Here is what I am doing and what I have coded so far.  I have created a droplet that would move files over into Photoshop do some reformating of the images and then when I get 4 images into Photoshop I am merging the open documents into a separt document and then kicking it back over to an action to do some more formatting with the combined document.  Here is the code I have so far. 
    var loadLayersFromScript = true;
    //@includepath "/C/Program Files/Adobe/Adobe Photoshop CS5.1 (64 Bit)/Presets/Scripts/"
    //@include "Load Files into Stack.jsx"
    var files = [];
    // declare local variables for close files
    var name = activeDocument.name;
    for(var d =0;d<app.documents.length;d++){
        try{
            files.push(app.documents[d].fullName.fsName);
        }catch(e){
            alert(localize('$$$/AdobePlugin/Exposuremerge/Mustsave=Documents must be saved before they can be merged'));
    if( d > 3 ){
    loadLayers.intoStack(files,true);
    // close documents except Untitled document
    while (documents.length > 1) {
      for (var i = 0; i < documents.length; i++) {
    // close all documents except the active document
      if  (documents[i].name != "Untitled1") {
                  documents[i].close(SaveOptions.DONOTSAVECHANGES);
    doAction("Resize Canvas", "Finish Document");
    The reason I need the Layers to not be names is because the document names change and I can not get the actions to work with the differences in the Layer Names when the new files come in. 
    Any help would be GREATLY appreciated.   

  • Load Files into stack failing after 1 image

    I've got 2 machines with Photoshop CC, both trying to load multiple images into a stack.  What happens is they load up the first image, and a layer called "load layers" and then it stops, never loading any more than the initial one.
    They're regular .jpg images as far as I can tell, is there anything else that could be causing an issue like this?

    It's completely replicatable, but only with that script, load files into stack, new images, new folder, new user, still doesn't work.  Is this why it's really strange to me.  I have no common ground between the computers as far as I know.

  • How to create keyboard for Load Files into Photoshop

    does anyone know if there is a way to create or is there an existing keyboard shortcut to Load Files into Photoshop from Bridge?

    I should have been more specifc.
    Much like in bridge-tools-photoshop-load files into photoshop, I want to load multiple files into a layered photoshop document.
    Can't seem to find a keyboard shortcut for this action. Though I don't know how to write scripts very well but there are far too many keyboard shortcut posts I've searched and can't seem to find a way.
    thanks

  • Am trying to access photoshop from bridge tool menu to load files into photoshop. only have illustrator

    I am trying to access photoshop from the bridge tool menu so i can go to, load files into photoshop layers. I don't have photoshop listed under menu, just illustrator.

    <moved from Adobe Creative Cloud to Bridge General Discussion>

  • Can't load VM shared library on dev_bootstrap

    Hi,
    I try to install a J2EE on a Redhat server with sapdb x86_64, and on the start phase the bootstrap crash with this error:
    [Thr 1086335328] JLaunchIStartFunc: Thread 1086335328 started as Java VM thread.
    [Thr 1086335328] *** ERROR => DlLoadLib: dlopen()= libjvm.so: cannot open shared object file: No such file or directory -> DLENOACCESS (0,Suc
    [Thr 1086335328] *** ERROR => Can't load VM shared library (libjvm.so) (rc=-2) [jhvmxx_mt.c  1415]
    [Thr 1086335328] *** ERROR => Cannot load DLL for Java VM [jlnchxxi_mt. 561]
    [Thr 182897250976] Wed Dec 21 11:54:56 2005
    [Thr 182897250976] SigISetIgnoreAction : SIG_IGN for signal 17
    [Thr 182897250976] JLaunchCloseProgram: good bye (exitcode=-2)
    I've read another threads, and the solutions proposed, but does'n work.
    can anyone help me?
    thanks in advance,
    david

    Hi,
    I have the same error for RedHat 4, x86_64 et oracle.
    [Thr 49156] JLaunchIStartFunc: Thread 49156 started as Java VM thread.
    [Thr 49156] *** ERROR => DlLoadLib: dlopen()= libjvm.so: cannot open shared object file: No such file or directory -> DLENOACCESS (0,Success) [dlux_mt.c    310]
    [Thr 49156] *** ERROR => Can't load VM shared library (libjvm.so) (rc=-2) [jhvmxx_mt.c  1415]
    [Thr 49156] *** ERROR => Cannot load DLL for Java VM [jlnchxxi_mt. 561]
    Have you found a solution ?
    Thanks a lot
    Laurence

  • Hi I would like to know if I can delete my file fpsaud (Library Cache) because my app Clean my mac cannot do it. Is this operation dangerous? Thanks

    Hi I would like to know if I can delete my file psaud (Library Cache) because my App Mac Cleanse cannot do it. Can I move this this manually into the trash? Is it dangerous? Thanks

    You should have stopped after the first paragraph, because that was the only helpful part. You managed to sarcastically tell the questioner that he or she is dumb, throw in a couple of tidbits to convince any reader how smart you must be, and discourage any further learning.
    I saw nowhere in the original question where marcozroberto was complaining about speed.
    Caches, to us lesser mortals, are one of the first culprits that come to mind when all the cookies (including smart cookies) and browser cache have been erased, yet the ads on Web pages still want to know if I'd like to find a date tonight in my specific area code. So, I turn to sites like the Apple discussion pages to find out what other pieces of memory I have to flush to feel less stalked.  According to you, I shouldn't bother my poor head learning about this machine I bought, I should just trust  manufacturers and programmers to manage everything.
    I doubt fpsaud is really the problem with my browsing (my next guess is the IP address), but I won't learn that here.

Maybe you are looking for

  • Error in "check" in PRRW transaction: RW609 and NR751

    Hi all, When i run the PRRW transaction and when i press "check", the errors below appear: E RW609 error in document number: TRAVL 2000000250 SYSLOG010 E NR751 Para o objeto RF_BELEG XXX, number range does not exist FBN1 I already entered a range num

  • 'SAP NetWeaver 7.0 (2004s) - ABAP Trial Version'

    Hi Experts,                I would like to install 'SAP NetWeaver 7.0 (2004s) - ABAP Trial Version'  which is available at SDN downloads - in my laptop. how long can i use the same. Will it get expired after some time? Is there any option to use the

  • Can we call ALV grid in a method?

    hello everybody, Is it possible to display the output in ALV from a <b>class-method(Global class)</b>? in a class-method wee cannot call a screen, so is there any other possibility to display the grid?? thanx in advance, abhilash.

  • How to allocate memory in Weblogic 8.0.1.5

    HI, Can anyone help me out with this one? Weblogic Server is slow and it always hang up. here is the details of the setup: OS: Windows 2000 Server Weblogic: BEA 8.0.1.5 The physical memory of the server is 8GB but weblogic server is just using 1GB. I

  • ITunes library management software suggestions?

    I've tried TuneUp but don't necessarily love it. Goal is to add missing lyrics, Artwork, fix artists names, etc. Any other suggestions out there or is this the best one?