

But, there are two problems with this.
One, you are storing two copies of the video in memory, so you are using twice the memory you need to.
Two, when you switch scenes from Scene 0 to Scene 1, the videos won't be in the same playback position, because each Video module keeps track of time independently. The transition won't be continuous, especially if you are using the Playlist to fade the scenes in and out.
To solve both of these problems, you can use a Scene module:


In the above example, Scene 1 is just drawing Scene 0, which in turn is drawing the video. Now, when you click on the scene tabs, or you use the Playlist to transition between Scene 0 and Scene 1, the video's playback position will be in exactly the same place.
You can use Scene modules in as many other scenes as you like. For the Video module especially, it can save a lot of memory and processor resources, because you're only using one copy of the video in your project.
For more information on Scene modules, see this section in the User's Guide:
http://magicmusicvisuals.com/downloads/ ... eneModules