New comment by dezifit on void-packages repository https://github.com/void-linux/void-packages/issues/36780#issuecomment-1104480886 Comment: Sort of. `qt5-declarative` contains `qml`, a interpreter for qml files. Save the following code to a file `play.qml`: ``` import QtQuick 2.4 import QtMultimedia 5.0 VideoOutput { anchors.fill: parent fillMode: VideoOutput.PreserveAspectFit source: player MediaPlayer { id: player autoPlay: true onStatusChanged: {if (status==MediaPlayer.EndOfMedia) play();} source: "video.mp4" } } ``` Adjust the source or copy a video to the same directory and start with: `qml play.qml`. I'm using QtMultimedia to display a video in the sddm login screen, but this requires a sddm theme.