ITunes 11 - where is "Track Size" displayed?

iTunes used to have a column that showed the size of each file.  Very helpful for my purposes.  However I can't find that column in iTunes '11.  There was also a column that showed what the file type was (AAC, AIFF, etc.) which was also handy.  How do you find this info in the iTunes interface now?

Click on Songs (located next to Albums, Artists, Genres...) while you browse your iTunes music library, the right click on title bar (where column headers are displayed) and chose from the menu that appears the information you want to see (i.e. Size if you wish to see the file size and Kind if you need to see the file type)

Similar Messages

  • Where is file size displayed in PSE?

    I recently took a Photoshop class (not PSE) and saw that the original file size and the current size (which grows with each edit) is always shown in the lower left corner. I like that. Does PSE do this as well? Thus far I have only seen the image resolution info, but not file size (as measured in MB).
    thanks.

    No, the file size (document sizes) shows the size of the file once it is
    saved. This is megabytes and using a psd for saving the file.
    It's just an estimate of the file size.
    The number on the left shows the size with all the layers flattened into one.
    The number on the right shows the size with all the layers intact.
    I guess these numbers are really just for reference, since the actual size once saved
    varies with the format used for saving.
    I think the max file size for elements in pixels is 30,000 x 30,000.
    A normal photo might be 3,000 x 2,000 pixels, so most people would
    hardy ever have a file of 30,000 x 30,000 pixels.
    MTSTUNER

  • I am contemplating replacing my old Ipod with a 8gb touch which supposedly holds up to 1760 songs. In my ITunes library the average size of a 12 song album is 300mb which means I can get 27 albums x 12 songs is 324 songs. Where am I going wrong here?

    I am contemplating replacing my old Ipod with a 8gb touch which supposedly holds up to 1760 songs. In my ITunes library the average size of a 12 song album is 300mb which means I can get 27 albums x 12 songs is 324 songs. Where am I going wrong here?

    There is about 6.9  GBs of free space on an 8 GB Touch for data storage. That translates to roughly 23 of your average albums.
    Holds up to 1760 songs is based on the size of an average track which is about 3 to 4 MBs, whereas your albums have tracks averaging more like 25 MBs per track. I sort of doubt your average album holds what would be about 5 hours.

  • A LOT of iTunes broken links/tracks after Music folder move...

    So yeah, I'm getting a TON of broken links / dead track links in iTunes after having to do two things to my iTunes install recently and I'm at wits end trying to fix it.
    I keep my iTunes Music Folder on an external and share the iTunes library between my work Macbook Pro and my home Macbook. Every Friday I drag my iTunes folder and all contents from my MBP onto an external and replace the iTunes folder on the 'weekend' MB, then do the same back on Monday. I keep my iTunes music 'View' as 'Date Added' so that I can always be listening to whatever is newest. It's how I roll.
    Well, this week I had some data problems during the transfer and had to use a previous week's iTunes Music Folder, which was fine as I hadn't added much this week.
    I also got a new external because the old one was getting a little shady, so after doing the iTunes Music Folder replacement I moved my music all over to a new external drive, told iTunes where it all was at. iTunes did it's thing, 'organized' my stuff and all seemed good - until I got back deeper into the catalogue of music and started getting a LOT of broken tracks. The songs are still there, in the correct folders and all, but for some reason iTunes isn't finding them.
    When I say a LOT, I mean so far it's hundreds of my 13,000 songs.
    Now I COULD use the 'Super Remove Dead Tracks' script from Doug's to find all the broken files then re-add the whole library, but it will add all the old songs out of order because they will get a new 'Added' date.
    I could also manually move thru my whole library holding down the arrow key for 'Next' to find all the broken links then go thru, select them, and use the 'iTunes Track CPR' script from Doug's to re-add them to the library with ratings intact, but still they will be out of order time-wise.
    I cannot find a script that will parse my library, find broken links, and re-associate them with their tracks, nor can I figure out why this happened and any other way to fix it. Repairing permissions hasn't helped. Any other ideas?

    Just to follow up with a more comprehensive example of looping through a Library to detect & repair "missing" file-tracks:
    <pre>
    property kErrAENoSuchObject:(-1728)
    on run
    tell (application "iTunes")
    set theLibraryPlaylist to (first library playlist)
    tell theLibraryPlaylist
    set theNumCandidateFileTracks to (count (every file track))
    repeat with i from 1 to theNumCandidateFileTracks by 1
    -- Get a reference to this file-track
    set thisFileTrackRef to (file track i)
    -- Get this file-track's info (useful for debugging, etc.)
    set thisArtist to (artist of thisFileTrackRef)
    set thisAlbum to (album of thisFileTrackRef)
    set thisName to (name of thisFileTrackRef)
    set thisFileTrackInfo to (thisArtist & " > " & thisAlbum & " > " & thisName)
    -- Display a diagnostic message every 500th file-track
    if ((i mod 500) = 0) then
    tell me
    display dialog ("Checking file-track #" & i & ": " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    end if
    -- Retrieve this file-track's target file (an AS 'alias' object), if any
    -- {!!! NOTE: Due to a bug in iTunes 7.x+ (esp. when downloading), AS might
    -- be unable to access the 'location' field of some file-tracks !!!}
    try
    set thisFileTrackTargetFile to (location of thisFileTrackRef)
    on error errMsg2 number errNum2
    -- Check whether it's that bizarre error: (-1728) "Can't get location of …"
    if (errNum2 = (kErrAENoSuchObject of me)) then
    -- Set up to just skip this track (assume it's being downloaded)
    set thisFileTrackTargetFile to (anything) -- (Other than 'missing value')
    else (* Re-signal all other errors *)
    error errMsg2 number errNum2
    end if
    end try
    -- Check whether this file-track is "missing" its target file
    if (thisFileTrackTargetFile = (missing value))
    -- Inform the user
    tell me
    display dialog ("Repairing this missing file-track: " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    -- Set up this target file's new pathname (e.g., via explicit user input, or
    -- better yet automatically reconstructed from this file-track's tags such
    -- as Artist, Album, Name, Kind, etc.)
    -- ... Translate this file-track's kind into a filename-extension
    set thisKind to (kind of thisFileTrackRef)
    set thisNameExt to "m4a" -- ... Default
    if ({thisKind} is in {("Protected AAC audio file")}) then -- Older DRM'd file
    set thisNameExt to "m4p"
    else if ({thisKind} is in {("MPEG audio file")}) then -- MP3
    set thisNameExt to "mp3"
    else if (thisKind contains "movie file") then -- E.g., interactive booklet
    set thisNameExt to "mov"
    end -- (thisKind = "MPEG audio file") ... else if ... else ...
    -- ... Auto-build this target file's new pathname
    set thisTargetFileNewPathname to ("New Disk:New Path:" & ¬
    thisArtist & ":" & thisAlbum & ":" & thisName & "." & thisNameExt)
    -- Assign this new target file (as an AS 'alias' object) to this file-track
    -- (This is the crucial step that was impossible in older versions of iTunes!)
    set (location of thisFileTrackRef) to (alias thisTargetFileNewPathname)
    end if -- (thisFileTrackTargetFile = (missing value))
    end repeat -- with i from 1 to theNumCandidateFileTracks by 1
    end tell -- theLibraryPlaylist
    end tell -- (application "iTunes")
    end run
    </pre>
    Regards,
    --P

  • How can I find where a track/album is listed in my playlists?

    Going through my CDs to see which ones I've imported into iTunes. Did a search for one album name, and found it in the Library, which of course dumps all tracks into one big container. I believe I have a playlist for this album somewhere, but I don't know where it is in my many playlist folders. Is there some way to find out where a track is included in a playlist or playlists, without manually going through every folder?

    Never mind; I found it in iTunes Help: control-click for a contextual menu, and it'll show the playlist(s) the item is in.
    RTFM.

  • Itunes can't find all my songs. how to tell iTunes where they all are

    i had to re-install a new hard drive and i downloaded and installed iTunes. i have all my iTunes songs on another drive. i saved the itunes library file and now when i open iTunes it shows all my albums and songs but when i try to play them they won't play. if i double click on a song i can tell iTunes where the song is and it will play but i don't want to have to do that to every track. how can i tell iTunes where all my songs are? i tried to Add Folder to the library but it only gets so far and says that it doesn't have the room for all the songs or something like that. i don't want all that media on the c drive anyway. how can i get this to work? thanks

    replying to aissy55
    It comes up with a 1428 error message sometimes, and sometimes it says that I have to restore my iPod. I have restored it many times, but it just keeps going in a circle and will not sync my songs back to the iPod.
    hmmmm. if you're relentlessly getting a recovery mode message, then you might be having a Windows drive letter confusion. see the following document for troubleshooting suggestions with that:
    "iTunes has detected an iPod in recovery mode - Use iTunes to restore"

  • Apple says  Reminders works with Outlook, but I can't find where the lists are displayed in Office or Outlook  once they are synced.

    Apple says  Reminders works with Outlook, but I can't find where the lists are displayed in Office or Outlook  once they are synced. Any suggestions?

    I'll guess you've already discovered the answer to this, but just in case:
    Reminders works with Outlook tasks by syncing with iCloud, or through Exchange. You can't sync iOS Reminders with Outlook Tasks via USB/iTunes (like you can do with Notes, Calendar, Contacts).
    So the marketing material on Reminders is a little misleading in that it's not specific enough -- there is no syncing without one of those intermediary systems mentioned above.
    On a side note, syncing Tasks/Reminders via iCloud is not very good in my opinion:
    Requires that you sync to the cloud, even if you have no other use for storing personal data in the cloud.
    Requires that the iCloud Control Panel be installed on your PC (not sure about Mac).
    After syncing, you'll find new Calendar and Task groups called "iCloud" have been created in Outlook. The calendar groups appear to be created even if you're only syncing Tasks/Remminders (not sure why).
    Reminders are stored in the new group (noted above) called "iCloud" rather than in your default Tasks group. This seems to me to be a sort of "parallel" sync, rather than a true sync with Outlook. There are oter implications of your synced tasks being in the new group that I won't go into here, but you can search the interwebs to learn more.
    In my own case, I tried iCloud syncing, decided that I didn't like it for the reasons stated above, and then uninstalled (Control Panel and new Outlook groups) with no apparent ill effects.
    Though I don't guarantee you'll have the same results, it might be worth a try to see if it suits your purposes.

  • Why would iTunes automatically change track info?

    I played a track in my iTunes library (purchased directly from band, not iTunes) which I have played many times over the last two years.  This time, however, the track suddenly disappeared from my sort view immediately after I clicked on it and as it was playing.  When I located it, I saw that the album name had changed from the album that I had purchased to a compilation album that the track had appeared on years ago (thus the resorting), and other track info had been altered as well.  This also happened for another track that I clicked on from the same album.  All other tracks on the album were unaffected when I played them.  How is it possible for iTunes to alter track info, particularly for music I have not purchased from iTunes?

    I suspect iTunes is revealing "corrections" made by Windows Media Player. If so the damage is done and you'll probably find other tracks have been affected over time.
    See my post on Getting iTunes & Windows Media Player to play nicely. Most importantly uncheck the WMP options as displayed in the final image.
    tt2

  • Items in iTunes Media folder won't display in iTunes

    Hi there
    I just had to restore my Windows 7 PC. The iTunes Media folder has been located on an external drive (iTunes media folder location: G:\iTunes Media) and remained untouched. After restoring the PC and downloading iTunes (current version was on the computer before) I changed the iTunes Media location (in Advanced Preferences) again to G:\iTunes Media and logged in with my apple ID.
    Thanks to iTunes Match, my Music is displayed in iTunes. However, all other files such as iTunesU data or iPhone and iPad Apps will not display in iTunes (although they are all right where they were before, in the indicated folder location).
    Owing to a couple of print screens I took of my settings before the restore of the PC, I was able to set everything exactly the way it was in the Advanced tab of the Preferences window.
    Thank you very much for any hints or advice.
    Simon

    Do you only have media on the external (which by the way is not a "library" because it is lacking many parts of a complete library), or do you have a complete iTunes folder with library files and support folders (a true library)? 
    If only media and you have both drives connected you need consolidate/organize media from one drive to the other.  iTunes 12 for Mac: Change where your iTunes files are stored - http://support.apple.com/kb/PH19507 - more information at: https://discussions.apple.com/message/22026652#22026652 - and steps 5-8 in https://discussions.apple.com/message/24491967#24491967
    If you have your entire library on the external drive, copy the iTunes folder from one drive to the other.  Start iTunes while holding down the option/alt key and select the relocated iTunes folder on the new drive.

  • ITunes burned CD track info does not show in another mac.

    iTunes burns a CD of imported LPs.  Track info was entered with Audacity, saved as aiff and then imported into iTunes .  The track info shows up in my car CD player but not another mac.  Any suggestions?

    Update: after trying 6 discs that failed, the next few worked fine. Both iTunes and Finder displayed the actual disk name and track names. However, going back to the previously failed disks did not change the outcome. They still failed. That worked for another 6 or so disks, then this morning I ran across another one that got looked up in iTunes, but not in Finder.

  • Running latest Audition CC on Yosemite.  Audio track is displaying, I can see the levels as I scrub but NO sound to headphones. WHY?

    Hi,
    I am Running latest Audition CC on a 2009 MacPro running the latest Yosemite.   I can see that  the audio Audio track is displaying, I can see the level rise and fall as I scrub but I can hear NO sound to headphones. WHY?
    I have checked the MacPro's system preferences and clicked through the Audition settings but I can't see where the output to device ( headphones) might be muted.  What am I missing?
    Thanks

    TexasPengr wrote:
    The signal level input registers on system preferences>sound>input source, but no matter what I do, I can't get Garage Band to recognize a signal input.
    set it in GB:
    http://www.bulletsandbones.com/GB/GBFAQ.html#selectinterface
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Why does iTunes DJ stop after my display has powered down?

    When my display has gone into idle power-down, iTunes finishes what it was doing and quits until I do something to my computer that wakes the display.
    Details:
    I'm listening to music on iTunes DJ (some AirPlay devices running).
    Everything's fine if I'm using the computer iTunes is on.
    When I walk away, I notice after a few minutes that no track started after the last one stopped. At some point during the last track, my display powered down (5 minutes).
    I jiggle my mouse or tap ctrl or shift or whatever else you do to get a display to wake up.
    As the monitor wakes up, play resumes.
    BONUS: when iTunes is in this state of non-playing, Apple TV can't engage my library to play media either.
    Just started doing this today.
    iTunes 10.5.3.3

    When my display has gone into idle power-down, iTunes finishes what it was doing and quits until I do something to my computer that wakes the display.
    Details:
    I'm listening to music on iTunes DJ (some AirPlay devices running).
    Everything's fine if I'm using the computer iTunes is on.
    When I walk away, I notice after a few minutes that no track started after the last one stopped. At some point during the last track, my display powered down (5 minutes).
    I jiggle my mouse or tap ctrl or shift or whatever else you do to get a display to wake up.
    As the monitor wakes up, play resumes.
    BONUS: when iTunes is in this state of non-playing, Apple TV can't engage my library to play media either.
    Just started doing this today.
    iTunes 10.5.3.3

  • HT2905 Is there an update for the newest version of iTunes. This option File Display Duplicates no longer appears under file.

    Is there an update for the newest version of iTunes. This option "File > Display Duplicates" no longer appears as an option under "File." I just got a new PC and copied my music files onto a portable drive from my old PC and pasted them into the iTunes folder on the new PC. It appears there are several duplicate files. Looking to delete my duplicate songs as simply as possible instead of single track by singe track. Any help would be appreciated.

    Press CTRL+B to display the menu bar, or ALT to show it on a temporary basis.
    tt2

  • ITunes STILL skipping tracks (V. 11.4)

    Ok, so I've had the problem of itunes skipping tracks in mid song, or just at any point.  For any particular album, the skip is at the exact same time.  This is getting very annoying.  I have tried: disk utility, installing and uninstalling itunes, rebuilding the library, removing extensions, adding and removing tracks, and adding and removing tracks.  It is worth mentioning that this only happens with tracks that I have added recently.  It is also worth mentioning that the tracks play just fine on other playback apps like Quicktime.  I had hoped the 11.4 update would fix this bug, but it has not. 
    I would GREATLY appreciate it if anybody has discovered the solution to this problem.  Otherwise, I will have no choice but to replace iTunes as my music playback application, and that would be a real bummer. 
    Thank you. 

    Still waiting for a solution, I found a kind of workaround (not very useful if you had a lot of new music since you experience the bug).
    I came to think that the problem is due to a bug in the analysis that iTunes performs to album tracks when importing new albums (what was called "gapless playback before iTunes 11). So I tried this and it works for me:
    - ask iTunes to show where the tracks are (in the Finder on Mac, in Explorer on PC)
    - return to iTunes and remove the tracks from the library (tell it to remove the songs but not to put the files in the trash)
    - in the Finder (or Explorer for those on PC), re-import the songs one by one
    Still waiting for a better solution of course. I'll try to rebuild the iTunes library entirely to see if it solves the problem but I don’t expect this to solve the problem so I'm not in a rush to do this annoying task.

  • I have downloaded a movie from ITunes.  It shows up in my video app.  When I go to play it I get an error message: "The requested URL was not found on this server". When I checked back on iTunes, where you click to rent or buy a movie it says "Downloaded"

    I have downloaded a movie from ITunes.  It shows up in my video app.  When I go to play it I get an error message: "The requested URL was not found on this server". When I checked back on iTunes, where you click to rent or buy a movie it says "Downloaded".  Any advice on what I can do in order to watch this movie that I rented a couple of weeks ago?

    Select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History on your computer.

Maybe you are looking for

  • How to Get Alternative Gl Account Number in SRM from ECC backend

    Hi All ,   We need to get the Alternative Account Number in the SRM  from the ECC backend.  Is it stored in any of the SRM Table?   or   is ther any  RFC(FM) or BAPI to get the Alternative Account Number from the Ecc to SRM.   Please help. Regards Ch

  • Complete newbie looking for direction

    C# developer for Windows - have been doing Outlook-based addins for a while. Looking to port something similar to Mac. Need plug-in (or something similar) integration into Ical, mail and the contact address database. Can this be done? Want to a) add

  • Crystal 2008 SP3 - incremental or cumulative?

    Hi Experts, Our software packages include pre-requisites like .Net runtime and Crystal 2008 runtime (among others). We currently have Crystal 2008 CRRuntime_12_1_mlb.msi as a pre-requisite. Our next major release requires Crystal 2008 SP3 as a pre-re

  • NI 1772 Smart Camera periodical​ly freezes

    I am working with a NI 1772 smart camera and Vision Builder AI 2013 and I am running an inspection that is time dependant. When running an inspection my camera will momentarily freeze or lockup or act really slow for a few seconds, then on it's own g

  • Validation in entity instance collection page

    I have a requirement where I have a page on our OPA interview page which collects entity instance.In this page there are two fields person contacted and contact date.I have to validate that the contact date is one per week.Please advice how can I ach