27.56 GB of other listed in contents of ipod

I don't understand what the 27.56 GB of "other" is on my ipod. I have only sync'd and transferred music files from Windows Media Player, and photo's from Adobe Photo shop. It's taking up almost half of my available space on my ipod. Please if anyone can tell me what this is, or theorize on how I can find out, please let me know.

elbergey wrote:
I don't understand what the 27.56 GB of "other" is on my ipod. I have only sync'd and transferred music files from *Windows Media Player*, and photo's from Adobe Photo shop. It's taking up almost half of my available space on my ipod. Please if anyone can tell me what this is, or theorize on how I can find out, please let me know.
Bingo. You said you used Windows Media Player. Windows Media Player doesn't add songs the way it should for an iPod and therefore will not show up on your iPod's UI or even in iTunes for that matter. Try accessing your iPod through my computer to check your files. Anything in there will most likely be "Other"
Only Calendars, Notes, iPod_Control, and Contacts should be there unless u use your iPod as a external hard drive.

Similar Messages

  • How to List Entire Contents of iPod?

    I manualy manage my podcasts. It used to be that I could list the podcasts and music together in one directory on the iPod, then manually delete the Podcasts I did not have time to listen to. Merely deleting them from a playlist does not delete them from the iPod.
    Now, I am unable to list those podcasts on my iPod. I do not want to sync, I want to manually delete them. How can I bring up a list of ALL contents, music and podcasts together, so that I may delete them?

    Hi Ismn:
    Then you probably haven't got any podcasts on the iPod yet.
    -> Put some on there.
    [ John ] I have over 95 podcasts on it.
    OR
    Your iPods firmware isn't up to date.
    -> update your iPod.
    [ John ] The app says I have the latest but I will look for another version manually to be 100% sure.
    OR (most likely)
    You have turned off podcast sync, while you're updating music and videos automatically.
    -> check "manually manage music and video" on the iPods summary.
    [ John ] It is...and has been checked. I have been doing it manually using iTunes 6 for over a year now.
    The only reason I not insanely ****** off is that I also own Anapod Explorer and it is working fine. I can clean off files using that...

  • How to list the content of a URL

    Hi All,
    I am wondering whether the method of listing the content of a URL, is the same as listing a directory on a local system? The listing of a local directory can be achieved with the following code for example:
        File dir = new File("directoryName");
        String[] children = dir.list();
        if (children == null) {
            // Either dir does not exist or is not a directory
        } else {
            for (int i=0; i<children.length; i++) {
                // Get filename of file or directory
                String filename = children;
    // It is also possible to filter the list of returned files.
    // This example does not return any files that start with `.'.
    FilenameFilter filter = new FilenameFilter() {
    public boolean accept(File dir, String name) {
    return !name.startsWith(".");
    children = dir.list(filter);
    // The list of files can also be retrieved as File objects
    File[] files = dir.listFiles();
    // This filter only returns directories
    FileFilter fileFilter = new FileFilter() {
    public boolean accept(File file) {
    return file.isDirectory();
    files = dir.listFiles(fileFilter);However, I am not sure whether it is as simple as replacing "directoryName" with "http://www.abc.com/photos" when using java.net.*.
    I am automating a task to download all photos in a gallery at certain website.
    Any assistance would be very much appreciated.
    Many thanks,
    Jack                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi paulcw, JoachimSauer,
    Thanks for answering to this post.
    I am only trying to automate some downloads of quite a of photo albums of relatives overseas. It only takes a few weddings to take hours to download. Moreover, the reason for having made the photos on the Internet so that the relevant parties can do their own download at their convenience for free as opposed to costing the individual to spend time and money on burn dozens of DVDs... After all, this is information age we are living in.
    Lastly, I am hoping to use the getContentType() method to determine the exact type of image such as jpg, gif, etc but doesn't appears that it is doing the right job. Is there any other way to do this instead?
    Thanks a lot again,
    Jack

  • How to list the contents of an OSX directory, and output to text file?

    hello there any hints with any known program that does following
    I have recorded my music directory to DVD and now i would like to make an .txt file what the dvd contains...cos its way of hand to write all 100xx files by hand...
    How to list the contents of an OSX directory, and output to text file?
    any prog that does that? any hints?
    best regards

    This script makes a hierarchical file listing all files in a folder and subfolder:
    Click here to launch Script Editor.
    choose folder with prompt "Choose a folder to process..." returning theFolder
    set theName to name of (info for theFolder)
    set thepath to quoted form of POSIX path of theFolder
    set currentIndex to theFolder as string
    do shell script "ls -R " & thepath returning theDir
    set theDirList to every paragraph of theDir
    set newList to {"Contents of folder \"" & theName & "\"" & return & thepath & return & return}
    set theFilePrefix to ""
    repeat with i from 1 to count of theDirList
    set theLine to item i of theDirList
    set my text item delimiters to "/"
    set theMarker to count of text items of thepath
    set theCount to count of text items of theLine
    set currentFolder to text item -1 of theLine
    set theFolderPrefix to ""
    if theCount is greater than theMarker then
    set theNestIndex to theCount - theMarker
    set theTally to -1
    set theFilePrefix to ""
    set theSuffix to ""
    repeat theNestIndex times
    set theFolderPrefix to theFolderPrefix & tab
    set theFilePrefix to theFilePrefix & tab
    if theTally is -1 then
    set theSuffix to text item theTally of theLine & theSuffix
    else
    set theSuffix to text item theTally of theLine & ":" & theSuffix
    end if
    set currentIndex to "" & theFolder & theSuffix
    set theTally to theTally - 1
    end repeat
    end if
    set my text item delimiters to ""
    if theLine is not "" then
    if word 1 of theLine is "Volumes" then
    set end of newList to theFolderPrefix & "Folder: > " & currentFolder & return
    else
    try
    if not folder of (info for alias (currentIndex & theLine & ":")) then
    set end of newList to theFilePrefix & tab & tab & tab & "> " & theLine & return
    end if
    end try
    end if
    end if
    end repeat
    open for access file ((path to desktop as string) & "Contents of folder- " & theName & ".txt") ¬
    with write permission returning theFile
    write (newList as string) to theFile
    close access theFile

  • Invalid element 'welcome-file-list' in content of 'web-app',

    HI, folks.
    I recently used struts to develop a simple web applicaiton, and whenever I tried to use tag libs
    such as /WEB-INF/struts-html.tld
    /WEB-INF/struts-html.tld and
    tried to compile it, it gives out compile error such as:
    Error(52,21): Invalid element 'welcome-file-list' in content of 'web-app', expected elements '[taglib, resource-env-ref, resource-ref, security-constraint, login-config, security-role, env-entry, ejb-ref, ejb-local-ref]'.
    if I remove the above tag libs, the jsp file compiles
    without any problem.
    Are you guys familiar with these problems?
    please let me know if I'm doing anything foolish.
    Thanks!

    Unless some other elements tag are not close correctly this error does not make sense. Can you cut and paste your web.xml?
    It should look something like:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <welcome-file-list>
      <welcome-file>/untitled1.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
      <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    </web-app>Charles.

  • Archive's list of contents could not be created

    Just started having this problem today after running OS updates.
    When I select a folder and create archive (file menu and contextual menu) I receive this error: "Archive's list of contents could not be created" and the zip archive fails to be created.
    Tested empty folders, folders with various files, etc. and searched for answers here but couldn't find any similar posts.
    Any help would be most welcome.
    G5   Mac OS X (10.4.8)  

    Repair permissions with Disk Utility, restart, and see if the problem persists. If so, create another admin user account, log into it, and try to make an archive.

  • Sync error with Workspace "Data in this list references content type "", which is no longer in the list schema"

    Dear,
    I saved a document library containing folders and files as a template to use it as a template when I created a document library.  It contains a lot of folders and files.
    When I tried the document library to sync with workspace it gives an error "Data in this list references content type "", which is no longer in the list schema"
    I checked with this error and I found out that it has issue with onenote file, but my library does not contain any onenote file. 
    I wonder if there is any issue regarding the number of folders to sync at a time because when I tried to sync with document library similar to the big library but lesser folders and files. 
    Thanks

    This is caused by certain OneNote files.  I've filed a support ticket on this.  See my
    post on possible workarounds.  You might view the entire library in windows explorer or flatten the folder structure in a view to confirm that there are not any OneNote related files.
    Corey Roth blog: www.dotnetmafia.com twitter:
    @coreyroth

  • Adding a custom meta data field which lists out content id based on query

    How can we add a custom meta data filed which lists out content id based on query like dDocType <matches> `AssociatedProduct`?
    Or other alternative would be to have a custom metadata field such that it allows selection of content id using link wizard which we typically use in site studio. It would be preferable to have this second option as it is user friendly. Can we do this on a check-in screen?
    -Pratap

    Thanks for the reply Deepak.
    We got it resolved. We did following changes in /ucm/custom/SiteStudio/resources/ss_custom_field_resources.htm file and it worked cleanly.
    Added following section at the end before body tag
    ===================================================================================================
    <@dynamichtml ss_parent_definition_field_entry@>
         <$include super.std_edit_entry$>
         <$if isQuery and isTrue(isQuery)$></td><td><$endif$>
         <$include ss_contributor_base_scripts$>
         <script type="text/javascript" src="<$HttpRelativeWebRoot$>resources/<$SSContributorSourceDir$>/sitestudio/wcm.contentserver.popup.js"></script>
         <script language="JavaScript">
         function OnSelectParentId()
              var selectParentIdOptions = {};
              selectParentIdOptions.httpCgiPath = '<$HttpCgiPath$>';
              selectParentIdOptions.queryText = 'dDocType <matches> `Country`';
              selectParentIdOptions.coreContentOnly = '<$if coreContentOnly and isTrue(coreContentOnly)$>1<$else$>0<$endif$>';
              selectParentIdOptions.callback = function( returnParams )
                   returnParams = returnParams || {};
                   if( returnParams && returnParams['dDocName'] && ( returnParams.dDocName.length > 0 ) )
                        // Set the actual metadata value
                        <$if isQuery AND isTrue(isQuery)$>
                             for (var i=0; i < document.<$formName$>.elements.length; i++)
                                  var elt=document.<$formName$>.elements;
                                  if (elt.name=="<$fieldName$>")
                                       elt.value = returnParams.dDocName;
                        <$else$>
                             document.<$formName$>.<$fieldName$>.value = returnParams.dDocName;
                        <$endif$>
              WCM.ContentServerPopup.ChooseManagedDocument(selectParentIdOptions);
         </script>
         <input type="button" value="<$lc("wwBrowse")$>..." onclick="OnSelectParentId();">
    <@end@>
    ======================================================================================
    Then modified the section which show xWebsiteSection, xRegionDefinition etc to include my custom meta data defitnion as well ('xParentContentType')
    ===================================================================
    <@dynamichtml std_edit_entry@>
         <$if fieldName and ( fieldName like "xWebsites|xDontShowInListsForWebsites" )$>
              <$include ss_website_query_text_field$>
         <$elseif fieldName and strEquals( fieldName, "xWebsiteSection" )$>
              <$include ss_website_section_field_entry$>
         <$elseif fieldName and strEquals( fieldName, "xRegionDefinition" )$>
              <$include ss_region_definition_field_entry$>
         <$elseif fieldName and strEquals( fieldName, "xParentContentType" )$>
              <$include ss_parent_definition_field_entry$>
         <$else$>
              <$include super.std_edit_entry$>
         <$endif$>
    <@end@>
    ====================================================================
    This worked fine.
    Regards,
    Pratap

  • Unable to Archive-list of contents cannot be created

    Hello all,
    I have a problem that I just noticed. I am attempting to create a .zip archive of a folder of pictures. I right-click the folder in the Finder and select "Create Archive of folder". This gives me a message with the header Copy that states "The archive's list of contents cannot be created." and an OK button.
    At first I thought that maybe the folder was too large. I tried the same steps on an individual text file and got the same error message. I tried copying the file to a different drive and still no joy. I created a new admin and normal user accounts and was unable to create any archives and received the same error message as above.
    Does anyone have any clue as to the steps I should follow to correct this issue?

    Charles, your post certainly pointed in a good direction. After posting my question, I went back and reviewed everything that I had changed or installed over the last few days. It turns out that the beta version of Little Snitch causes permission errors. Similar to the posts on MacOSXHints, my /tmp folder suddenly became visible and showed as being owned by the staff group that I was no longer a part of. Uninstalling the Little Snitch program and repairing permissions has re-enabled archiving within the Finder. I've also posted a bug report to the developers of Little Snitch to see if they could look into the issue.
    Thanks again for the advice.

  • What is "other" listed on my iPhone 4S and why is it sucking up so much storage space?  How can I get rid of it?

    How can I get rid of the huge "other" listed on my storage of my iPhone?  It's taking up huge gigs.  This phone is not even 60 days old!

    This worked for me with iPhone 5:
    Backup iPhone in iTunes
    in iPhone>Settings>General>Reset>Erase all content and Settings
    in iTunes> Restore iPhone with previous Backup (point 1)
    There is no need to reset the iPhone with iTunes and no need to manually resync apps and content.
    You will have your "new" iPhone with all your apps, settings and media just like before
    with only a mere 500 mb (0,5gb) of "other" memory.

  • List the contents of jar, ear, war files

    Hi All,
    It has been several years since I have worked in java and now I am trying to get caught back up :-).
    My question is: Is there a standard utility that can dump/list the contents of the packaging files: jar, ear, war?
    Thanks in advance!

    You can use winzip. OR you can use the jar command provided in JDK.
    jar -tvf <<your archive (jar, war, ear)>>

  • I cant list the contents of my *llb help please

    I have this error message "An error occurred while listing the contents of xxxx.llb"
    I think the file is corrupted can I recover the vi's inside?
    Attachments:
    Cont Acq&Chart modified.llb ‏637 KB

    NI might be able to. You can try contacting them by going to NI Support. A corrupt llb when you don't have a current backup can be a major problem. That is why they should never be used in development to save your VIs. The intent of an llb was to give the use the ability to create VIs with longer names than the old dos 8.3 format. The only reason to use an llb now is to make distribution of a project simpler. Good luck.

  • How-to list the contents of a Data Pump Export file?

    How can I list the contents of a 10gR2 Data Pump Export file? I'm looking at the Syntax Diagram for Data Pump Import and can't see a list-only option.
    Regards,
    Al Malin

    use the parameter SQLFILE in the impdp which writes all the sql ddl's to the specified file.
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm
    SQLFILE
    Default: none
    Purpose
    Specifies a file into which all of the SQL DDL that Import would have executed, based on other parameters, is written.
    Syntax and Description
    SQLFILE=[directory_object:]file_name
    The file_name specifies where the import job will write the DDL that would be executed during the job. The SQL is not actually executed, and the target system remains unchanged. The file is written to the directory object specified in the DIRECTORY parameter, unless another directory_object is explicitly specified here. Any existing file that has a name matching the one specified with this parameter is overwritten.
    Note that passwords are not included in the SQL file. For example, if a CONNECT statement is part of the DDL that was executed, it will be replaced by a comment with only the schema name shown. In the following example, the dashes indicate that a comment follows, and the hr schema name is shown, but not the password.
    -- CONNECT hr
    Therefore, before you can execute the SQL file, you must edit it by removing the dashes indicating a comment and adding the password for the hr schema (in this case, the password is also hr), as follows:
    CONNECT hr/hr
    For Streams and other Oracle database options, anonymous PL/SQL blocks may appear within the SQLFILE output. They should not be executed directly.
    Example
    The following is an example of using the SQLFILE parameter. You can create the expfull.dmp dump file used in this example by running the example provided for the Export FULL parameter. See FULL.
    impdp hr/hr DIRECTORY=dpump_dir1 DUMPFILE=expfull.dmpSQLFILE=dpump_dir2:expfull.sql
    A SQL file named expfull.sql is written to dpump_dir2.
    Message was edited by:
    Ranga
    Message was edited by:
    Ranga

  • Generate list of contents that were published

    Hi,
    Is there a way to find out a list of contents that were published, lets say everday etc? Or is there a way it can be achieved through some scripting? Please advise.
    Thanks

    Hi,
    Thanks for the info. I tried creating a copy of Page Activation Report by setting root path to /var/audit/com.day.cq.replication.
    To test it, I activated a content and ran the report. It is showing past data but not the latest one that I activated.
    I am new to CQ. I am not sure how to use it exactly. When I click on "Finish", it throws an alert saying "The report doesn't contain any grouped colums. Please ensure atleast one column is grouped before clicking Finish"
    Also, let me explain what exactly I am trying to achieve. I want to pull an hourly list of content that is published and send it through email.
    Any further info that you can provide will be of great help.
    Thanks in advance.

  • Is there a list of contents being stored in the iCloud?

    is there a list of contents being stored in the iCloud?

    Not all in one place no. Individual apps may store data there. As far as I know you'll need to inspect each app to find out what. There there is your iTunes purchase history and iTunes Match if you are a subscriber. What exactly were you looking for? Does this answer any questions? http://www.apple.com/icloud/features/
    tt2

Maybe you are looking for

  • I am getting error 7 on my windows xp and itunes won't open.

    I've tried installing again and still nothing.  I have removed everything from my computer and still nothing.  Initially it was a problem with itunes helper.  Now, I don't know any more.  Please help! Thanks

  • Can I use wireless headphones with my Sony model KDL 32L5000?

    It is hard to hear voices well in some movies, I'd like some headphones but don't know if it is possible. Thank you. Solved! Go to Solution.

  • New tab strip for PO header data

    Hello, for a customer project there is the need to add a new customer individual tab strip to PO and contract header data. Is there an User Exit or any other predefined way to do this in a most efficient way with minimum changes in SAP standard? Rega

  • Fill string with characters

    I need to fill string 'ABC' with a character 'K', that string will now have 15 characters. Is that possible with sql?

  • IPhone Camera won't save photos/iPhoto can't see photos

    My iPhone camera is having a lot of problems.  1. Photos the are clear when taken are blurry when reviewed. 2. When I try to delete a photo, it says "saving photo" instead. 3. Photos don't save properly. 4. Although I have 900 pics on my iPhone, iPho