Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!

10.5: Watch and listen to the 10.5 intro movie System 10.5
Did you enjoy the Leopard intro video that played after your install completed? You can find the source audio and video buried in the Finder:

Navigate to /System » Library » CoreServices » Setup Assistant. Control-click on Setup Assistant and select Show Package Contents from the pop-up menu, then navigate into Contents » Resources. Play the Control-click game again on TransitionSection.bundle, then navigate into Contents » Resources. Whew. As a shortcut, just copy the following text (triple-click to select it all), bring up the Go » Go to Folder box, and paste:

/System/Library/CoreServices/Setup Assistant.app/Contents/Resources/TransitionSection.bundle/Contents/Resources/

Here you'll find intro.mov, which contains the video, and intro-sound.mp3, which holds the audio. Enjoy!

[robg adds: The audio is separate from the movie because it's longer -- 55 seconds vs. 34 seconds. Can anyone identify the band? The version that leaked to the net earlier this year had 10.4's audio, but the final release has a new tune that isn't one in my collection!]
    •    
  • Currently 0.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (0 votes cast)
 
[11,418 views]  

10.5: Watch and listen to the 10.5 intro movie | 9 comments | Create New Account
Click here to return to the '10.5: Watch and listen to the 10.5 intro movie' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.5: Watch and listen to the 10.5 intro movie
Authored by: bdfortin on Tue, Nov 6 2007 at 1:06PM PST
The song is Exodus Honey by Honeycut.

[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: zpjet on Tue, Nov 6 2007 at 1:06PM PST
yey! it's "Exodus Honey" by Honeycut.

i got it from iTunes. the whole album is cool!

http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=174734238&s=143444


[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: chaimzvi on Tue, Nov 6 2007 at 1:14PM PST
Thanks! I was sleeping when it played, and I was wondering what I missed.

[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: HessianSack on Tue, Nov 6 2007 at 3:11PM PST
Yeah I missed it too... cheers for that, was wondering where on the drive it was hiding.

[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: mistersquid on Tue, Nov 6 2007 at 1:34PM PST
I've excerpted a 15-second snippet on my blog (search on my username to find it) for use as an iPhone ringtone.

[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: Xjs on Tue, Nov 6 2007 at 1:57PM PST

I uploaded a version that combines video and audio, put together in QuickTime.

Turn QuickTime or Quick Look to fullscreen and pretend just having installed Leopard ;-).

Here's the link.

---
Photography is the Art of making the Visible Invisible.

[ Reply to This | # ]

10.5: Watch and listen to the 10.5 intro movie
Authored by: Serj on Wed, Nov 7 2007 at 1:08AM PST
Thanks Xis !

[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: TonyT on Tue, Nov 6 2007 at 9:01PM PST
I used iMovie to combine the .mov and .mp3 into a quicktime movie (did the same when I installed Tiger last year)

[ Reply to This | # ]
10.5: Watch and listen to the 10.5 intro movie
Authored by: sgasp on Sat, Mar 7 2009 at 11:20AM PST
This script will play the video and the sound

Just copy past the code in a new Applescript in Script Editor.

save it as an Application.

[code]
tell application "QuickTime Player"
set myVideo to open POSIX file "/System/Library/CoreServices/Setup Assistant.app/Contents/Resources/TransitionSection.bundle/Contents/Resources/intro.mov" as alias
set myAudio to open POSIX file "/System/Library/CoreServices/Setup Assistant.app/Contents/Resources/TransitionSection.bundle/Contents/Resources/intro-sound.mp3" as alias
activate
tell front document
select all
copy
end tell
get properties of document "intro.mov"

add document "intro.mov"
present document "intro.mov" scale screen
delay 46
close documents without saving
end tell
[code]


[ Reply to This | # ]