Linking to specific tracks in iTunes U PSM

OK, on the new iTunes U public interface it doesn't seem possible to link directly to a specific track and have it start playing in iTunes when the link is clicked.  Instead the link opens a collection page in the browser.  This is a change from how the old public side worked.
Anyone have any ides how to link directly to a track?
Thanks,
Shannon

Two additional pieces of information:
Be sure that you are clicking the "View in iTunes" button next to the specific track that is highlighted on the iTunes Previews page. Many users make the mistake of clicking "View in iTunes" below the collection's artwork. This is indeed a collection URL and will redirect you into the iTunes Store without highlighting a specific track.
If you want to link to a specific track and have the link automatically open iTunes you need to add an extra parameter to the end of the URL. If the link you have copied already contains a question mark (?) add the text: &ls=1 If it does not then it should be: ?ls=1.
Examples:
With ? - add "&ls=1"
Before: http://itunes.apple.com/us/podcast/11-mistakes-to-avoid-in-2011/id380130790?i=89 972552
After: http://itunes.apple.com/us/podcast/11-mistakes-to-avoid-in-2011/id380130790?i=89 972552&ls=1
Without ? - add "?ls=1"
Before: http://itunes.apple.com/us/itunes-u/texas-a-m-engineering-works/id387509697
After: http://itunes.apple.com/us/itunes-u/texas-a-m-engineering-works/id387509697?ls=1

Similar Messages

  • Will we be able to link to a SPECIFIC TRACK in iTunes U?

    In planning ahead, this question has come up:
    Will we, when everything is up and running, be able to link to a SPECIFIC TRACK within a course on our Otis iTunes U site?
    Or will one only be able to link to the WELCOME page then navigate to the desired track?
    thanks in advance, Kathleen
    IBM PC Windows XP
    IBM PC Windows XP

    I would assume that you could link to a store URL for a track if it was in your public instance (such as http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=136709067&s=143 441&i=5147220 which is also available at their website at http://www.chm.colostate.edu/podcasts.html) and that if it was in your private area behind a password & login it would make you do that first, but then continue to that link.
    I notice that at http://www.apple.com/education/solutions/itunes_u/
    it says that iTunes U has:
    "Integrated podcasting support. Automatically generate a podcast feed from within any course.
    # Protects your online learning investments. iTunes U complements learning management systems, including Blackboard, WebCT, and Sakai. Students can access iTunes U content from within these systems with one click."
    I'm wondering if there will be specific APIs to work with a CMS?

  • ITunes having issues with specific tracks.

    Specific tracks are giving me problems. That is to say when I try to play that specific song iTunes will pinwheel for 20~30 seconds (or crash) and if it does play the song will stutter. When I'm syncing my iPod and it gets to these tracks iTunes will again pinwheel for a while and then tell me that my iPod cannot be read from/written too. I've tried removing iTunes and reinstalling as well as removing the Library.xml file to no luck (however removing the library file changed which songs are giving me issues). The songs are seemingly random, some are in the middle of albums or songs I purchased off itunes store, no real pattern there. Also it was doing this under 10.5.8 and now still with 10.6. Its all very strange and I'm out of ideas.

    Are the videos the right kind of files to play in itunes?  If not they need to be converted.
    Not sure if I am allowed to mention the software needed to convert so you may have to use google to find that.

  • I am trying to upload a project with multiple tracks to iTunes.  only the first track seems to be uploading. what do I do?

    I am trying to upload a project from garageband with multiple tracks to itunes but only the first track is uploading. what do i do to make them all upload together?

    Couple of questions:
    What type of Tracks are they (MIDI, AUdio, Drummer)?
    WHen you play your Project, do You hear all Tracks playing?
    What happens when you change the Track order, i.e. A-B-C to B-C-A? WHen you export, do you still get only one Track and if so, is it talways the first Track in the list or a specific Track regardless if it is the first, second, or third?
    Are you sure you don't have any Tracks Muted or Soloed (which auto-mutes the other Tracks)?
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Is there a way to transfer songs from a Sony 16GB MP3 player to an iPod Classic? Tried dragging the songs to iTunes,only accepted 1400 of the songs. MP3 player was full.  I also had compiled the songs in a specific order and iTunes changed order.

    Is there a way to transfer songs from Sony 16GB MP3 player to an iPod Classic?  Tried dragging the songs to iTunes but it only accepted 1400 of the songs, MP3 was full. I also had compiled the songs in a specific order and iTunes changed the order.

    The songs from the Sony MP3 player need to be imported into your iTunes library first before they can be synced or added to your iPod Classic. 
    Regarding the songs that didn't import into iTunes, what format are they in and what seems to be different from them compared with the tracks that did import?
    B-rock

  • How to import CD as single track in iTunes 11.01?

    The abilty to import CDs as a single track in iTunes was great for Dj mix CDs and the like. But there no longer seems to be the option in iTunes 11.01? Or am I overlooking something? Any advice would be appreciated.

    No, you don't need to purchase iTunes Match to put CDs on your iPhone. You always have the option of syncing with iTunes using the cable that came with your iPhone.
    See this page for more information on importing CDs:
    http://support.apple.com/kb/VI106
    There is a video tutorial and a number of links to related articles.
    Best of luck.

  • Can you batch rename tracks in iTunes for Mac?

    I want to do a sequential track naming, but I can't figure how to do this and the Doug's applescript isn't working - it renames my FILES instead of the TRACKS!
    These tracks are from an audiobook on CD, and it's tiresome to have to search for the "part" when all the tracks are numbered 1-99 and the only thing keeping them from being in the wrong order is the fact that I told iTunes the disc order in the 'Get Info' menu. It wouldn't be so hard on the MacBook, but I usually listen to these on my iPhone, and scrolling through literally hundreds of tracks takes forever, and sometimes I STILL can't find which track was playing last!
    I've done a batch rename using an Automator workflow setup I found on the web, but I can't find anything that lets me actually rename the tracks. I've even deleted the tracks from iTunes, renamed the files, deleted the faulty script that screwed things up, and it STILL comes up with the weird numbers and track numbers and renames the files in Finder!!!
    I'm getting really frustrated with this and don't want to have to rename tracks by hand because that takes HOURS.

    Hi,
    Here is an AppleScript example of how to rename tracks in iTunes :
    display dialog "What will be the base name?" default answer "Track "
    set baseName to text returned of the result
    set n to 1 -- the starting number
    tell application "iTunes"
          repeat with thisTrack in (get selection) -- rename selected tracks
                set name of thisTrack to baseName & n
                set n to n + 1
          end repeat
    end tell
    Without more information, I can not make script specific to your needs.

  • Problem buying a specific track, not tracks in general

    Over in the regular Music Store they're suggesting that I
    post this here even though it's not my setup that's the problem.
    I am having a problem downloading a specific track, other
    purchases work OK. The problem is obviously in the Store,
    but iTunes Support waits 3 days to reply with a canned
    e-mail blaming my "firewall" or my "web accelerator"
    software. I don't need Technical Support; my software is
    working fine. I need someone to fix the item in the store.
    I am trying to purchase the track:
    Artist: Oregon
    Title: The Glide - Single
    The track is listed in the Store and is available
    to Preview, but when I try to buy it I get:
    Could not purchase "Unknown". An unknown error
    occurred (5002).
    There was an error in the Music Store. Please try again later.
    This has been happening for 9 days now and I've tried
    to buy it from 4 different computers. I do not
    have trouble buying other tracks. It looks like
    there is a problem with the store, not my computer.
    Thanks-
    TrackID: 1046351

    Well, no doubt that "the issue has been passed to the people in charge". However, I have the feeling that if such a problem was happening to a track in the bestselling iTunes store list, the people would be far more in charge, and it would be fixed in a couple of hours instead of a couple of months, if ever.

  • How to join tracks when iTunes can't see the CD

    I have a convoluted issue.
    From this post <http://discussions.apple.com/thread.jspa?messageID=4567334&#4567334> I understand that in order for iTunes to see my CD it needs to be in Standard format. (In my case the files are MP3s and a Windows Executable.... On my windows machine it auto-launched MusicMatch.)
    Most of the time, the work-around of selecting the files in the Finder and dragging them to iTunes would be fine.
    Unfortunately, the 43 tracks on the CD in question are an audiobook which I'd like to join together as ONE track. From other posts I've read, I understand the only time one can join tracks is when importing from the CD in iTunes.
    Since iTunes can't see the CD, is there any other way to join the tracks?
    I have several CDs worth of audiobooks and would hate to have 17 gazillion tracks floating around my iTunes and iPod....
    Thanks for any help you can give me.
    -Peggy
    G5 iMac Mac OS X (10.4.9)

    I've found a work-around. It's not exactly a zippy process, but in the end I did end up with a conjoined bookmarkable AAC file rather than 43 separate MP3s.
    At <http://aldoblog.com/audiobooks/itunes/importing-mp3-cds/> I learned more about the settings needed for importing my tracks to iTunes. Unfortunately, using the .m3u file didn't work for me but it may for others. (I suspect it was because the CD was created with MusicMatch in mind, rather than iTunes.)
    The FAQ at aldoblog.com gave me my next ray of hope.
    <http://aldoblog.com/audiobooks/itunes/frequently-asked-questions/#q5>
    Here I found a link to Doug Adam's "Join Together" which can stitch together tracks after they've been imported into iTunes.
    <http://dougscripts.com/itunes/scripts/scripts07.php?page=1#jointogether>
    I hope this helps someone else trying to do this...
    -Peggy
    G5 iMac Mac OS X (10.4.9)

  • How do I get a track from iTunes to match the master tempo of my project?

    I have a project open and I am adding a track from iTunes, but it does not line up with the tempo, making it impossible to play loops over it.  Is there a way to make the tempo of the track match the master tempo of the project?

    benfrommason wrote:
    so is there a way to mix songs together that aren't the same tempo?
    Yes. You have to decide which song is the "master" song that you match the other to. This song has to have the "follow tempo and pitch" option unchecked, the other song has it checked. Then you can use the tempo slider to match the songs to each other.
    (I even did it with "Sympathy for the Devil" which has an irregular beat - it gets faster as the song progresses, the folks didn't record with a metronome back then. Using a tempo curve, I was able to match it to a modern, steady-beat song.)

  • Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    You can download the trial version (http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html) to convert the PDF back to WORD if you do not have the original. The conversion may not be perfect, but it is typically better than starting from scratch. You may be lucky and get a good result. You might check the settings (in the save screen) to try retain format versus retain text flow. The format version can be a pain to edit since it creates a bunch of text boxes. The flow version may require you to reformat in WORD, but you likely would want to do that anyway.

  • I have two iTunes accounts. One was set up for my iPhone; the second was created for my iPad. I just updated my iPhone and it linked my to my second iTunes account instead of y primary. How can I change it back to my primary account?

    I have two iTunes accounts. One was set up for my iPhone; the second was created for my iPad. I just updated my iPhone and it linked my to my second iTunes account instead of my primary account. How can I change it back to my primary account?

    Hey bjboles,
    Welcome to Apple Support Communities.
    The article linked below describes what to do after changing your Apple ID, but you can use it as a guide to resolve the incorrect Apple ID account information entered issue that you described.
    Apple ID: What to do after you change your Apple ID - Apple Support
    Ciao, 
    -Jason

  • If i have 2 apple i.d.s both me, one linking to my computer and itunes, and the other to my phone can i merge these together?

    if i have 2 apple i.d.s both me, one linking to my computer and itunes, and the other to my phone can i merge these together?
    i havent used my computer in two years. in that time i recently got a iphone4s and started another apple id.
    i just set up my computer and my itunes on my computer has a different id. is it possible to merge these as one? the itunes on my computer has a no longer working email as well.
    so if i go to change the info on that to my current email it obviously wont let me because it is registered to "someone" else... ME..
    so is there any way to make the one on my computer the current one i have on my phone so i dont loose ALL my music from my computer??

    Sorry, but Apple IDs cannot be merged. You can, however, use more than one Apple ID/iTunes Store account on your computer and hence on your iPhone. If you've forgetten the password to your older ID, see:
    http://iforgot.apple.com
    once you get in, you can change the email address associated with that ID so that receipts and such are emailed to a current address.
    Regards.

  • Hi everyone, I have a computer linked to my iPAD through itunes.  Then my Computer crashed and had to get  a new one. How do I get rid of the old computers link on ipad and get it on new computer bcos is wont work! (doesn't work) PLZ HELP :(

    Hi everyone, I have a computer linked to my iPAD through itunes.  Then my Computer crashed and had to get  a new one. How do I get rid of the old computers link on ipad and get it on new computer bcos is wont work! (doesn't work) PLZ HELP

    what do you mean the old computers link?
    my ipad is sycned with my computer but nowhere is there a link
    and if I connected it with a new computer and set it to sync it would replace all my data with the data from the new computer

  • How do i search for a specific artist in iTunes store on iPhone 5?

    How do i search for a specific artist in iTunes store on iPhone 5?

    Open the iTunes app > Search > then type the Artist's name

Maybe you are looking for

  • How to render web items based on the authorisation profile of the user

    Hello, Is there any way to render web items based on the authorisation profile of the user. The only way i can think of is: - Write ABAP to look up into the security mapping tables. - Convert the ABAP report into RFC-Enabled FM. The selection variabl

  • IPhone AppleID signin on another iPhone

    Yesterday, I downloaded and installed the new iOS6 on two iPhones.  I signed on with my Apple ID on my friends phone to get questions answered, etc. and then discovered that I shouldn't have done this.  My friend did not remember their ID and I signe

  • T410 looses screen resolution after awaking from sleep?

    I have all up to date drives installed from lenovo Update utility. When my laptop comes out of sleep the screen reolution get lost and then to restore it back I just have to right click onmy desktop and click Nvidia control panel to restore back. Any

  • Yosemite update to 10.10.2 observations

    When I updated from 10.10.1 to 10.10.2: #1.  I lost my wi-fi connection to my printer.  Solution is to restart the wireless devices (DSL modem and Airport in my case) and restart the printer. #2.  I'm sole user of my iMac and 10.10.2 added guest at s

  • Open With selection in Mountain Lion lags

    I'm now in ML 10.8.4 I now notice that when I go to the menu to select an app to open up a file with I get the blue circle and this lasts up to 20 seconds before I get the app list to choose from. Is this a ML thing or my set up as I have 4 interanal