#VRML V2.0 utf8 # WorldInfo to give some basic information WorldInfo { title "VRML 2.0 MovieTexture Example" } # A screen with MovieTexture applied to it Transform { translation 0 0 0 children [ Shape { appearance Appearance { texture MovieTexture { url ["example.mp4", "example.mov"] # Paths to the video file (relative or absolute) loop TRUE # Set to TRUE for looping playback speed 1.0 # Playback speed (1.0 = normal speed) startTime 0 # Start time in seconds stopTime -1 # -1 means play until the end } } geometry Box { size 4 2 0.1 # A thin box acting as a screen } } ] }