For those who have subscribed to the RSS feed, there is a video for this tip.
Something I've been wanting to do for a while is be able to have my desktop background be a movie instead of just an image. Unfortunately, using the method outlined below, you can't pause the movie, but this will have to do for now.
Step 1: Download and install the SaveHollywood screensaver.
Step 2: After you've installed SaveHollywood, go to your screen saver preferences and select it as your screen saver. Click on the options button and set it up as you would like. When researching this tip, somebody suggested using music videos as your desktop background.
Step 3: After you've setup SaveHollywood, we now need to set our desktop background as the screensaver. This really isn't hard. Simply run this command in Terminal: (The command should only be one line. Not two!)
/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background > /dev/null 2>&1 &This should activate the screensaver-on-desktop effect.
Step 4: To stop the screensaver-on-desktop effect you can either close the Terminal window or go to Activity Monitor and quit the ScreenSaverEngine process.
Step 5: If you want a button to turn on and off the screen saver effect, then you can use the following applescript:
tell application "System Events"
if process "ScreenSaverEngine" exists then
tell application "ScreenSaverEngine" to quit
else
do shell script "/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background > /dev/null 2>&1 &"
end if
end tell
This will turn it on if it's off and off if it's on. Simply save it as a applescript application or download it from here.
Other Options
If you don't like this particular method of getting movies onto your desktop, there are two other ways of doing it:
1: Divx Player
2: Desktop Movie Player
Divx Player
The Divx Player option is probably the better of the two. First, download the free Divx Player. After launching the app, simply open any video file and hit Cmd-D (Playback>Desktop) to have it play on the desktop. To pause the video, simply right click on the Divx Player dock icon and select the Pause/Play option.
Pros:
Pause/Play capability.
Cons:
Another app in the dock.
It works best with Divx movies. (Plays some normal filetypes, but, not iPod/TV files)
Desktop Movie Player (not recommended at all!)
The Desktop Movie Player was another solution I found while researching this tip. Download the Desktop Movie Player and drop a movie onto the icon to have it start playing.
Pros:
Easily play movies.
Cons:
PPC based (runs very very slow/uses rosetta)
No pausing.
Another app in the dock.
For those of you who prefer a demonstration, I've made a video for this post. Watch it here.
If you've followed this tip and setup a video on your desktop, what do you have playing? Leave a comment!






