An open community 
of Macintosh users,
for Macintosh users.

FineTunedMac Dashboard widget now available! Download Here

Previous Thread
Next Thread
Print Thread
Easily play one song at a time in iTunes 9.2.1?
#11652 09/05/10 12:46 AM
Joined: Aug 2009
OP Offline

Joined: Aug 2009
If I open a playlist in iTunes 9.2.1 and select any song and click the Play button, iTunes plays it and then the rest of the list; but what I'd like to do is hear that one song and stop and select another and play that one. Is there a simple "preference"-type of thing to enable a "single-play" mode?

I can only think of overworking the checkboxes in the playlist (constantly checking and unchecking them, with the help of a keyboard shortcut), or maybe making a large number of playlists with just one song in each list.

Further: It would be good to be able to burn several lists to a CD, so that groups of songs will play through but not play into the next group until "told" to do so with the CD-player remote,for example by my pressing the "Next" button.

Re: Easily play one song at a time in iTunes 9.2.1?
Jack Reed #11660 09/05/10 02:04 PM
Joined: Aug 2009
Offline

Joined: Aug 2009
If you Command-Click one of the checkboxes, it will toggle the checkboxes for an entire playlist, so a but less tedious than doing each track one at a time.


iMac 2.7 GHz Core i5, 12 GB RAM, OS X 10.9, Int SATA 1 TB, Ext Fire 2 TB / 1 TB / 1 TB / 500 GB / 300 GB
Former MacFixIt Forums member since 11/17/99
www.rhubarbproductions.com
Re: Easily play one song at a time in iTunes 9.2.1?
Jack Reed #11663 09/05/10 04:27 PM
Joined: Aug 2009
Likes: 3
Moderator
Offline
Moderator

Joined: Aug 2009
Likes: 3

I don't know if it will prove any less cumbersome, but you might give Doug Adams's AppleScript Just Play This One v2.0 a try.



dkmarsh—member, FineTunedMac Co-op Board of Directors
Re: Easily play one song at a time in iTunes 9.2.1?
Kevin M. Dean #11664 09/05/10 05:11 PM
Joined: Aug 2009
OP Offline

Joined: Aug 2009
Thanks, Kevin. That's something like the keyboard shortcut I was hoping for.

Re: Easily play one song at a time in iTunes 9.2.1?
dkmarsh #11665 09/05/10 05:32 PM
Joined: Aug 2009
OP Offline

Joined: Aug 2009
Thanks for that link, dkmarsh! Adams's whole site looks like worth studying to this iTunes newbie.

FWIW, I'm on my first real iTunes project, having bought some material from the iTunes Store for the first time; previously I'd only used the application to catalog a few news clips from radio stations' websites, but now I have a little collection of tracks to savor one at a time, relaxing in the living room. I'm a little surprised that simple option isn't built into the application, but I've never thought I was typical...

Re: Easily play one song at a time in iTunes 9.2.1?
Jack Reed #11669 09/06/10 11:50 AM
Joined: Aug 2009
Offline

Joined: Aug 2009
you could always choose the "Repeat one song" option (third button from the left, on the bottom left; give it a couple of clicks), then at least it wouldn't always jump to the next song in your playlist.


MacBook 2.4 Ghz · 4 Gb ram · 10.7.5
stuff I'm interested in
iPhone 4s 7.0.2
Re: Easily play one song at a time in iTunes 9.2.1?
roger #11764 09/12/10 07:02 PM
Joined: Aug 2009
Offline

Joined: Aug 2009
Originally Posted By: roger
you could always choose the "Repeat one song" option

This used to work very nicely in a smart playlist I had where one of the conditions was that the play count was zero.

It would play the track once, then you'd hear it try to start from the beginning of the track for the fraction of a second that it took the smart list to drop the track. Then it would stop.

That doesn't work anymore. I'm not sure if it was an OS update or an iTunes update that killed it, but now it just goes on to the next track, as if the repeat option were "Repeat once" instead of "Repeat one song".

Re: Easily play one song at a time in iTunes 9.2.1?
ganbustein #11767 09/12/10 08:03 PM
Joined: Aug 2009
Likes: 16
Moderator
Offline
Moderator

Joined: Aug 2009
Likes: 16
Originally Posted By: ganbustein
That doesn't work anymore. I'm not sure if it was an OS update or an iTunes update that killed it, but now it just goes on to the next track, as if the repeat option were "Repeat once" instead of "Repeat one song".

It works in iTunes 10 on my Macs but there is no requirement for the play count to be zero. confused


If we knew what it was we were doing, it wouldn't be called research, would it?

— Albert Einstein
Re: Easily play one song at a time in iTunes 9.2.1?
joemikeb #11768 09/12/10 08:30 PM
Joined: Aug 2009
Offline

Joined: Aug 2009
To be clear... What I can't get to work is "Play it once and stop". It still doesn't work on iTunes 10. (That was one of the first things I checked.)

"Play one track over and over" does work, as long as the track stays in the playlist, but that's not what I'm trying to do.

Specifically, I have a "New podcasts" smart playlist that lists all unplayed podcasts. Most of them will be moved to a manual playlist that syncs with an iPod, arranged in the order I want to listen to them on my hike, but there are a few short ones (of the "60-second" variety) that I'd just as soon listen to right now. It used to be that I could set "New podcasts" to repeat a single track. Any track I played would play once, and then stop, because iTunes won't repeat a track that's no longer in the playlist. It now instead ignores my repeat setting and continues on to the next unplayed podcast.

Re: Easily play one song at a time in iTunes 9.2.1?
ganbustein #11770 09/12/10 08:33 PM
Joined: Aug 2009
Likes: 16
Moderator
Offline
Moderator

Joined: Aug 2009
Likes: 16
Where is the dope slap smiley when I need one?


If we knew what it was we were doing, it wouldn't be called research, would it?

— Albert Einstein
Re: Easily play one song at a time in iTunes 9.2.1?
ganbustein #11998 09/25/10 07:32 PM
Joined: Aug 2009
Offline

Joined: Aug 2009
I found a workable solution. iTunes exposes a "once" attribute to the AppleScript "play" command. I put this script in my Scripts menu:
Code:
tell application "iTunes"
	set sel to get the selection
	repeat with aTrack in sel
		play aTrack with once
		exit repeat
	end repeat
end tell
The "exit repeat" is there because it seems to me that a script designed to play a track once should play only one track. I haven't tested removing it. (If iTunes waits for the track to finish playing before returning to the script, it may time out. If it doesn't wait, the first track may not have time to finish before the second track stomps on it. A more complex script could address either concern, once I know which concern needs to be addressed, but at this point I don't care.)


Moderated by  cyn, dianne 

Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.4
(Release build 20200307)
Responsive Width:

PHP: 7.4.33 Page Time: 0.035s Queries: 36 (0.028s) Memory: 0.6219 MB (Peak: 0.7161 MB) Data Comp: Zlib Server Time: 2024-03-29 08:16:20 UTC
Valid HTML 5 and Valid CSS