Skip to content

Bug Report: Videos not showing, only audio #731

@NaviVani-dev

Description

@NaviVani-dev

What version of the engine are you using?

Version: 1.0.1

Which target are you using?

[ ] Windows
[x] Linux
[ ] Mac

Explain your issue

Please check first if your issue haven't already been reported yet.

Videos are invisible on Linux, you can still hear the audio but no video will show. There is no console output or crash, you just can't see the video.

Here's a comparasion using a little mod with both game versions (Linux and Windows), same files and same script (pulled from the wiki):

import hxvlc.flixel.FlxVideo;
var video:FlxVideo = new FlxVideo();
video.onEndReached.add(function():Void
{
    video.dispose();

    FlxG.removeChild(video);
});
FlxG.addChildBelowMouse(video);

if (video.load(Paths.video("test")))
    new FlxTimer().start(0.001, (_) -> video.play());

Left game being the native Linux executable, and right being the Windows executable running under Proton (Experimental).

video.1.mp4

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions