Video stream player won't show

Godot 4.4

I am trying to make a new scene with a stack of videos in a VBox container. However, when I add a video into the stream, it shows up invisible. Some videos won’t take up any space at all. I have also tried adding the video under a control node and having the base scene be a video stream player. have made sure that the videos are in the OGV format. Is there a way to get the videos to play?

Here is the video scene. The first video will not take up any space unless I manually set the size:

Here is the main scene. The video scene instantiates as a child of the ScrollContainer node:

The video won’t show in the editor, only when running the project.

Also, read in the manual about the expand property that handles the sizing of the video.

The video also doesn’t show when the project is running

The documentation is your best friend.

If you want the video to play as soon as the scene is loaded, check Autoplay in the inspector. If not, leave Autoplay disabled and call play() on the VideoStreamPlayer node in a script to start playback when desired.

Hope this helps