Set up a video

BeginnerProgrammerDesigner

Note

Xenko supports most major video formats, but converts them to .mp4. To reduce compilation time, we recommend you use .mp4 files so Xenko doesn't have to convert them.

Note

Currently, Xenko doesn't support video on iOS platforms.

1. Add a video asset

Before you can use a video in your game, you need to import it as an asset.

  • Drag the video file from Explorer into the Asset View.

    Alternatively, in the Asset View, click Add asset and select Media > Video, then browse to the video you want to add and click Open.

Add video asset

  • If the video has audio tracks, you can import these at the same time, or import just the audio from the video.

Import video

  • Click OK.

    Xenko adds the video as an asset in the Asset View. If you imported audio tracks from the video file, Xenko adds them as separate audio assets.

Video and audio assets

Note

Currently, you can't preview videos in the Asset Preview.

For information about video asset properties, see Video properties.

2. Add a video component

  • In the Scene Editor, select or create an entity to add a video component to.
Tip

It's usually simplest to add the component to the same entity that has the texture plays the video. This just makes it easier to organize your scene.

  • In the Property Grid, click Add component and select Video.

Add video component

Xenko adds a video component to the entity.

Video component

  • In the Video properties, under Source, select the video asset.

Video source

  • Under Target, select the texture you want to display the video from.

Video target

Models that use this texture will display the video.

When the video isn't playing in your scene, Xenko displays the texture instead.

3. Create a script to play the video

After you set up the video component, play it from a script using:

  1. myVideoComponent.Instance.Play();

Other functions

  • LoopRange: The looping range (must be an area in the video in PlayRange)
  • IsLooping: Loop the video loop infinitely
  • SpeedFactor: Set the video play speed. 1 is normal speed.
  • PlayState: The current video play state (playing, paused or stopped)
  • Duration: The duration of the video
  • CurrentTime: The current play time in the video
  • Volume: The audio volume
  • PlayRange: The video start and end time
  • Play/Pause/Stop: Play, pause, or stop the video
  • Seek: Seek to a given time

Example script

  1. {
  2. public class VideoScript : StartupScript
  3. {
  4. // Game Studio displays the public member fields and properties you declare in this script
  5. public override void Start()
  6. {
  7. // Initialization of the script.
  8. Entity.Get<VideoComponent>().Instance.Play();
  9. }
  10. }
  11. }

4. Add the script to the entity

  • In the Scene Editor, select the entity that has the video component.

  • In the Property Grid, click Add component and select the video script.

My video script

Xenko adds the script as a component.

You can adjust public variables you define in the script in the Property Grid under the script component properties.

Properties

See also