Skip to content

MPFVideoPlayer

MPFVideoPlayer is a Godot Node class provided by the MPF-GMC extension. It holds a video file for playback and provides convenient controls for end-of-video behavior.

Node Configuration

An MPFVideoPlayer node can be placed anywhere in a slide or widget and offers the following custom properties.

end_behavior:

Single value, one of "Nothing", "Remove Slide/Widget", "Post Event". Default "Nothing"

"Nothing":

When the video finishes playing, no special behavior will occur.

"Remove Slide/Widget":

When the video finishes playing, the slide or widget that holds this MPFVideoPlayer will be removed automatically.

"Post Event":

When the video finishes playing, the event video_finished will be posted to MPF. This is in addition to any event configured in the events_when_finished option.

events_when_stopped:

Multiple values, type: String. Default None.

When the video finishes playing, custom events can be posted to MPF. Enter the name of the event here, or multiple events separated by commas. The event(s) will be posted regardless of the end_behavior setting.

VideoStreamPlayer Node Configuration

Because MPFVideoPlayer extends from the base Godot VideoStreamPlayer node, the standard video parameters can be used and the most pertinent ones are detailed below.

audio_track:

Single value, type integer. Default 0

If the video stream has multiple audio tracks, you can specify which one to be played with this video.

stream:

Single value, type VideoStream. Default None.

This is the video file that will be played by the video player. Use the Quick Load option to find a video in your project folder.

volume_db:

Single value, type integer. Default None.

The volume this video should play at. 0db is the standard volume level, and -80db is silent. Note that this value is mixed into the audio bus the video is playing on.

autoplay:

Single value, type boolean. Default false.

If checked, this video will begin playing immediately when it is added to the scene tree.

expand:

Single value, type boolean. Default false.

If checked, this video will expand to fill the size of the MPFVideoPlayer container. If unchecked, the video will play at its native resolution.

loop:

Single value, type boolean. Default false.

If checked, this video will loop playback.

bus:

Single value, type AudioBus. Default Master.

The audio bus that this video's audio will play on. This affects the video's playback level as its volume is mixed into the selected bus, and ducking effects applied to the bus will apply to the video as well.

Methods

MPFVideoPlayer does not have any public methods exposed, but custom methods can be added to scene scripts that extend MPFVideoPlayer.


Something missing or wrong? You can fix it!

This website is edited by people like you! Is something wrong or missing? Is something out of date, or can you explain it better?

Please help us! You can fix it yourself and be an official "open source" contributor!

It's easy! See our Beginner's guide to editing the docs.

Page navigation via the keyboard: < >

You can navigate this site via the keyboard. There are two modes:

General navigation, when search is not focused:

  • F , S , / : open search dialog
  • P , , : go to previous page
  • N , . : go to next page

While using the search function:

  • Down , Up : select next / previous result
  • Esc , Tab : close search
  • Enter : go to highlighted page in the results