Quicktime Player List.

I'm wondering whether there's a way to create a list of movies so that QuickTime can play them, even put them in shuffle mode and stuff...like iTunes but on QuickTime.

Thanks...

MacBook Pro - Mac Pro, Mac OS X (10.5.7)

Posted on Jul 30, 2009 3:01 AM

Reply
3 replies

Jul 30, 2009 2:37 PM in response to Fran_.

Hi Fran!

I posted the reply below the other day to a similar question. However, there is no way I know of using this approach, to generate a random number (for shuffle play). The best I can think of along this line would be to have a "GOTO" index number here and there through out the playlist to move things around, but it is not true random play (this sentence will make more sense after you've read the description below). For that you would need to add a little JavaScript or use a program like LiveStage Pro.

<snip>
Which leaves us with an HTML solution (you could use the browser to launch the QuickTime Player instead of playing on a web page). You begin with the default movie and then a list of movies plays as defined by the code structure.

The following is the code frame work:
QTNEXTn="<Filename> T<Target>" or GOTOn

QTNEXT is the command.
n is an index number for your movie.
Filename is the name/pathway for your movie. If you put all your movies into one folder it would make the naming scheme easier.
Target should be "myself" which replaces the current running movie with the next one on the list (as opposed to opening in a new window or the QT Player).

An example here: http://www.wdd3.info/Xper/Multi-Loader.html

Below shows the style of the code I used in an HTML Snippet in iWeb for the above example:
======
<embed src="First.mov" height="496" width="640"
QTNEXT1="<Second.mov> T<myself>"
QTNEXT2="<Third.mov> T<myself>"
QTNEXT3=GOTO0 >

Note the last line of code... instead of a movie file reference there is a GOTO command, in this case "0" (zero) - which plays the opening default movie (index of 0) again and creates an infinite loop - or it could be any movie (number) in the index - or have a third movie play instead, etc. 255 files is the limit that can be sequenced.

Of course you would want to wrap the above code in an object tag so Windows users could view it.

Aug 3, 2009 1:58 PM in response to Fran_.

I think the simplest answer is to build your playlist in iTunes.

QuickTime Player is really just a bare-bones player and means of exposing the QuickTime API. If you don't want to write something from scratch, you probably should use iTunes, because that is Apple's full-featured media player.

iTunes is, in fact, little more than a front-end interface for QuickTime. Which is kind of how it was meant to be; QuickTime Player was never supposed to be a fancy media player; it just happens to be the engine that plays media.

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Quicktime Player List.

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.