What's New in QuickTime 5
| Previous | Chapter Contents | Chapter Top | Next |
A media skin can be added to a movie using a text editor, a graphics program such as Adobe Photoshop, and QuickTime Player (Pro version).
In a typical case, you might want to replace QuickTime Player's brushed-metal frame with one of your own design, as shown in Figure 10 . Here are the steps that you would follow:
Figure 10 A newly created frame with space for controls and movie playback that replaces QuickTime Player's brushed-metal frame
Figure 11 A new frame image added to an existing QuickTime movie as a background image
Figure 12 Movie controls added as a Flash track or wired sprite track on top of your frame image
Figure 13 A mask image which is the size and shape of your frame
Figure 14 A second mask image which is the size and shape of the draggable part of your frame
<?xml version="1.0"?>
<?quicktime type="application/x-qtskin"?>
<skin>
<movie src="Framed.mov"/>
<contentregion src="WinMask.pct"/>
<dragregion src="DragMask.pct"/>
</skin>Be sure to save your movie, in this case Finished.mov , as a self-contained movie, and distribute the self-contained version, not the XML text file. The XML text file is dependent on external files and will not Fast Start over the Internet. The self-contained version will Fast Start.
You can now put Finished.mov on a CD, email it to a friend, or embed a link to it in a Web page. You can target the link to open your movie in QuickTime Player using the EMBED tag. For example:
<EMBED SRC="poster.qtif" TYPE="image/x-quicktime" HEIGHT=120 WIDTH=160 HREF="Finished.mov"
TARGET="quicktimeplayer" >This tag would embed a QuickTime image file named poster.qtif in a Web page. If the viewer clicks the image, QuickTime will launch Finished.mov in the QuickTime Player application.
To launch Finished.mov automatically, without the viewer clicking anything, you add AUTOHREF="true" to the EMBED tag.
The example just given uses a static image as a custom frame, but remember: a media skin just provides masks to use when displaying your movie. Any visual media type can show through the masks, including motion video and special effects, such as those possible with the QuickTime cloud or fire effects.
Any part of your movie can be made into a draggable region. However, tracks that respond to mouse events, such as VR panorama tracks or wired sprite tracks, should not be covered by a drag mask -- the drag behavior prevents mouse events from reaching underlying tracks.
What's New in QuickTime 5
| Previous | Chapter Contents | Chapter Top | Next |