Itunes 8.1.1 - cannot get import setting to stay at 128kb/s

Hi,
I've just downloaded the latest itunes, and am having trouble. I set the preference for importing to 128kb/s, as I'm a quantity rather than quality kinda guy. However, every time I insert & import a CD it reverts to default 256kb/s.
I don't want 256, or I'd set it like that.
Can I download a fix for this? Otherwise, how do I get back to version 8.1 please
All help appreciated, hard drive nearly full!

Haven't heard of that one, but it sure sounds like a bug. You can report it to Apple here.
Meanwhile, if you set the bitrate just before importing, does it in fact import at the correct bitrate?

Similar Messages

  • TS1702 I have purchased sky sports for my ipad and cannot get it set up

    I have just purchased sky sports for the ipad and cannot get it set up, the only thing I manage to see is sky sports news, can anyone help please

    Try restarting the iPad (the red "swipe to power off", then power back on). That may get the movie to appear in the Videos app. If not, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • I have itunes in windows xp, but my ipod touch has updated version of itunes. Windows xp cannot get updated itunes. I am having difficulties transferring my music into my computer. Does any one have an idea how to do it?

    I have itunes in windows xp, but my ipod touch has updated version of itunes. Windows xp cannot get updated itunes. I am having difficulties transferring my music into my computer. Does any one have an idea how to do it?

    iTunes 11 is compatible with
    Windows System Requirements
    PC with a 1GHz Intel or AMD processor and 512MB of RAM
    Windows XP Service Pack 2 or later, 32-bit editions of Windows Vista, Windows 7, or Windows 8
    Try:
    Trouble installing iTunes or QuickTime for Windows

  • I downloaded Icloud somehow I changed my itunes account information and cannot get back to my original account that had a redeemed balance on it  how can I get back to the original account?

    I downloaded Icloud somehow I changed my itunes account information and cannot get back to my original account that had a redeemed balance on it  how can I get back to the original account?

    Buy the songs that your friend put on the iPod that you liked. They had no right to give you the copyrighted music when they sold you the device.
    tt2

  • I have an old itunes gift card and cannot get it to work.

    I have an old itunes gift card and cannot get it to work.
    Any suggestions?  It's about 10 years old.
    Thanks,
    BuffalomarkM

    Can you provide more detail than just "doesn't work"? What happens when you attempt to redeem the card?

  • ERROR : Cannot get data set while connecting to BI.

    Hi,
    I am trying to connect to BI trouggh my application. I am following one of the document which i got from SDN. But now i am getting ERROR : Cannot get data set  while connecting to BI.  Can any one tell me why i am getting this error.
    when i tried to excecute first time it gave the same error for the bellow given Querry. But after that it got excecuted. Then again It gave the same error. But it got excecuted twise like that after that it dint get excecuted once also.
    Querry:  SELECT
    [Measures].MEMBERS ON AXIS(0) ,
    NON EMPTY [0VENDOR].MEMBERS ON AXIS(1)
    FROM [0PUR_C01/0PUR_C01_DB_Q04];
    Regards,
    H.V.Swathi
    Edited by: H.V Swathi on Jun 1, 2009 1:33 PM

    HI,
    Thanks for ur reply.
    NO
    i am using this part of code to display the result in IFrame.
    IConnectionFactory connectionFactory = null;
         IBIConnection connection = null;
         IBIDataSet dataset = null;
    //        get the MDX statement entered by the User
         String mdxStatement = wdContext.currentContextElement().getMDXQ();
         wdComponentAPI.getMessageManager().reportSuccess("mdxStatement  "+mdxStatement.toString());
    //        Declare a stringbuffer to store the HTML Code
         StringBuffer l_strXmlFile = new StringBuffer();
         wdComponentAPI.getMessageManager().reportSuccess("l_strXmlFile  "+l_strXmlFile.toString());
         try {
    //        Connect to BW System
         Context initctx = new InitialContext();
    //        Perform JNDI lookup to obtain connection factory
            wdComponentAPI.getMessageManager().reportSuccess("l_strXmlFile eeeeee ");
         connectionFactory =
         (IConnectionFactory) initctx.lookup(
         "deployedAdapters/SDK_XMLA/shareable/SDK_XMLA");
    //        Establish connection using default connection properties
            wdComponentAPI.getMessageManager().reportSuccess("connectionFactory  "+connectionFactory);
         connection =
         (IBIConnection) connectionFactory.getConnectionEx(null);
         wdComponentAPI.getMessageManager().reportSuccess("connection  "+connection);
         IBIOlap olap = ((IBIConnection) connection).getOlap();
         wdComponentAPI.getMessageManager().reportSuccess("olap  "+olap);
    //     Execute the MDX statement and retrieve the data set
    //     using the execute method of the IBIOlap interface.
    dataset = olap.execute(mdxStatement);
    wdComponentAPI.getMessageManager().reportSuccess("dataset  "+dataset);
    } catch (Exception e) {
    e.printStackTrace();
    wdComponentAPI.getMessageManager().reportException(
    e.getLocalizedMessage(),
    true);
    } finally {
    try {
    connection.close();
    } catch (Exception e1) {
    //     TODO Auto-generated catch block
    e1.printStackTrace();
    if (dataset == null) {
    wdContext.currentContextElement().setResult_Visibility(
    WDVisibility.NONE);
    } else {
    wdContext.currentContextElement().setResult_Visibility(
    WDVisibility.VISIBLE);
    //     Render the data set.
    l_strXmlFile
    .append("<html>")
    .append("<head></head>")
    .append("<body>");
    //     Display the MDX that has been executed.
    l_strXmlFile
    .append("<p><b>MDX Statement that was executed:</b><br> ")
    .append("<span class=\"code\">")
    .append(mdxStatement)
    .append("</span> </p>");
    try {
    BIDataSetTableModel table =
    new BIDataSetTableModel(dataset, false);
    l_strXmlFile.append("<p>Result set:</p>");
    l_strXmlFile.append(
    "<table width=700 border=1 cellpadding=0 cellspacing=0>");
    int row = table.getRowCount();
    int col = table.getColumnCount();
    for (int i = 0; i < row; i++) {
    l_strXmlFile.append("<tr>");
    for (int j = 0; j < col; j++) {
    BITableItem item = (BITableItem) table.getValueAt(i, j);
    l_strXmlFile.append("<td class=\"headCenter\">"); l_strXmlFile.append(Helpers.escape(item.toString()));
    l_strXmlFile.append("</td>");
    l_strXmlFile.append("</tr>");
    l_strXmlFile.append("</table>");
    l_strXmlFile.append("</body></html>"); } catch (BISQLException e2) {
    //     TODO Auto-generated catch block
    e2.printStackTrace();
    //     read the stringbuffer into bytes
    byte[] l_byteData = null;
    try {
    l_byteData = l_strXmlFile.toString().getBytes("UTF-8");
    } catch (UnsupportedEncodingException e) {
    wdComponentAPI.getMessageManager().reportException(
    e.getLocalizedMessage(),
    false);
    //     Create a web resource and set the value of the
    //     context variable "IFrameData" to it's URL
    IWDCachedWebResource l_File =
    WDWebResource.getWebResource(
    l_byteData,
    WDWebResourceType.HTML);
    try {
    wdContext.currentContextElement().setIFrameData(
    l_File.getURL());
    } catch (WDURLException e1) {
    wdComponentAPI.getMessageManager().reportException(
    e1.getLocalizedMessage(),
    false);
    Reagards,
    H.V.Swathi

  • After selecting "Tones" within iTunes on iPad, I cannot get back to the regular music section. I am eternally stuck inside Tones. Help !!

    After selecting "Tones" within iTunes on iPad, I cannot get back to the regular music section. I am eternally stuck inside Tones. Help !! It's driving me nuts.

    I copied this from an extremely knowledgable iTunes for Windows user in another discussion. Maybe this will help.
    In Windows, you can restore much of the look & feel of iTunes 10.7 with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit (iTunes) > Preferences > Store anduntick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album (Grid) view use Edit(iTunes) > Preferences > General and untick Use custom colours for open albums, movies, etc.
    With iTunes 11.0.3 you can enable artwork in the Songs and playlist views from View > Show View Options (CTRL+J) making it more like the old Album List view.
    If you are a Mac user, all you have to do is start navigating through the menu items at the top of the screen to find just about everything that is mentioned here.

  • Have Windows 7 and iTunes 10.7 but cannot get iTunes to launch.  No error codes when click "open" and never does.  Have uninstalled and re-installed several times.

    Using Windows 7 and iTunes 10.7.  Cannot launch iTunes - click "Open" and get no error but program won't open. Have uninstalled and reinstalled several times.

    Can you check something for me please?
    Restart your PC. after the PC restarts, bring up your Task manager, and go to the "Processes" tab. Click "Image name" to sort the processes alphabetically.
    Now try to launch iTunes.
    Does an itunes.exe process appear? If so, does it vanish after a second or so, or does it persist in the Processes tab (even though iTunes itself never shows up)?

  • My US iphone has suddenly attacched to UK itunes store and I cannot get it back to US

    In 2005-2006 I lived in UK and had UK iTunes acct (no iphone).
    Moved to US, changed acct in 2007. No problems.
    Got iphone 2010. No problems.
    Randomly in 2013 my itunes acct reverts back to UK, taking iphone with it. I have sucessfully changed the itunes account back to US, but cannot get iphone to change back to US. I have tried syncing the phone with my US itunes. I've tried to find a way to change it on the actual phone. I'm out of ideas. Pleased help.

    See Empty/corrupt library after upgrade/crash or
    Recover your iTunes library from your iPod or iOS device.
    tt2

  • I just got a new 3rd Gen Ipad wi-fi and I cannot get it set up.T-I am using my iphone hotspot and it is working.i'm stuck

    i just got a new 3rd Gen Ipad and I cannot get set up.I am using my Iphone4g hotspot and it is on and working.The Iphone comes up as the network and when u touch the arrow a new page comes with some stuff I don't understand
    Thank you.

    What does the page say? What do you need help with?

  • Since downloading itunes 11.03 I cannot get back movies on my ipad  or music and i have no clue how it works anymore after many years of enjoying it, I now have no clue and I'm about as angry as anyone could be.  What has happened !!

    Please help , I have downloaded upgrade 11.03.. Now I have lost my movies and music files from my ipad and cannot reinstall them , try as I might.  Having used itunes for years I cannot believe I cannot mkae this work and feel very let down by itunes for allowing this upgrade to mess everything up still havent put it right. so can anyone help or are we all waiting for apple and itunes to sort themselves out. They must be loosing money as I can see from so many comment pages else where I am not the only person by far that is having the same or similar issues. I have wasted hours and still no further forward. I have lost all faith in apple itunes and reluctant to change anything or download any other updates, sad for someone who has a ipone , ipod and ipad.

    I copied this from an extremely knowledgable iTunes for Windows user in another discussion. Maybe this will help.
    In Windows, you can restore much of the look & feel of iTunes 10.7 with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit (iTunes) > Preferences > Store anduntick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album (Grid) view use Edit(iTunes) > Preferences > General and untick Use custom colours for open albums, movies, etc.
    With iTunes 11.0.3 you can enable artwork in the Songs and playlist views from View > Show View Options (CTRL+J) making it more like the old Album List view.
    If you are a Mac user, all you have to do is start navigating through the menu items at the top of the screen to find just about everything that is mentioned here.

  • I have not used my ipod in several months, i have logged into my account on itunes but i still cannot get into my ipod. it still pops up the message that the ipod is dissabled and that i need to connect to itunes. well, i have. now what?

    i broke my ipods charger a few months back. and since then i haveforgotten my ipods 4 didgit code and it became dissabled. i have connected to itunes and tried everything to get back into it. can anyone help me? totally appritiated.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • HT201320 I changed my email address and password and now cannot get it set up on my iPad-keeps telling me its verifying and no mail comes through

    I added the new email account per the instructions above and still cannot get it to work.  It appears that everything is setup properly, however, no mail comes through.

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    Providing you are simply updating your existing details and not changing to another account, when you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.

  • Trying to upload to 8.1.3 and stops at a picture of a power lead going into an itunes logo? I cannot get beyond this - any ideas?

    Can anyone help? I now cannot even open the ipad as it doesn't go beyond this logo.

    The image means that the iPad has gone into recovery mode, it needs to be reset by connecting it to a computer's iTunes.
    When you connect the iPad to your computer, does your computer's iTunes not recognise that an iPad in recovery mode has been connected to it ? That should let you reset the iPad back to factory defaults, and you can then restore to your backup or just resync your content to it.
    If your computer's iTunes isn't recognising the iPad then you have an up-to-date version of iTunes installed ? These troubleshooting pages for a device not recognised in iTunes might help :
    PC : iPhone, iPad, or iPod not recognized in iTunes for Windows - Apple Support
    Mac : If you don't see your connected device in iTunes for Mac - Apple Support

  • I subscribed to itunes match but now cannot get it to work

    I subscribed to Itunes match and copied CDs to my laptop which matched to the cloud and then copied to my iphone. However, trying  a second time with more laptop tracks it will not match to the cloud.

    Submit a support case with Apple:
    http://support.apple.com/kb/he57
    Note: folks have been reporting issues with iMatch service and Apple does NOT monitor these forums. They're used for peer-to-peer assistance. Only way you'll get any visibility into the issue is be opening a case with them.

Maybe you are looking for

  • Reader 11.0.03 Update?

    We use System Center Update Publisher (SCUP) to deploy Adobe Reader updates.  We have several machines with Reader 11.0.02 that fail to install the update saying that it is the wrong version: "Adobe Reader XI (11.0.01) - Update '{AC76BA86-7AD7-0000-2

  • RFC_NO_AUTHORITY calling ABAP function from a Web Service

    Hi, We have a web service that publishes existing BAPIs, and some custom ABAP functions. When calling the custom ABAP functions we a "system exception" in the client side. Looking at SM21 the log has a dump: The user "1DDD8B960830" in the client 310

  • App store about download apps with money

    now If I want to download an app from the mac app store If I want to download the same app on the other device will I have to pay again or do I get it for free

  • How to compress a file expdp?

    Hi. I am testing the Data Pump Export and when I try to compress the dump file this don't work. The Oracle Database is 10G R2. I have read some files and post about this and the "guru" say : migrate to 11G and this is solved. I don't thing I migrate

  • Stamps not on printed document

    When I print a document that has stamps on it (check mark, etc) the stamps do not show up.