MPV 用几何图形播放视频

MPV 用几何图形播放视频

我有 YOCTO 构建,并且已将 mpv 集成到图像中。我需要测试一些东西,所以我写了一个脚本,可以播放具有特定宽度、高度和屏幕位置的视频,但 mpv 始终全屏播放视频,这是我使用的脚本

mpv 有办法解决这个问题吗

#!/bin/bash

# Define the width and height
width=250
height=250

# Launch the first video
mpv --geometry=${width}x${height}+0+0 video1.mp4 &

# Launch the second video
mpv --geometry=${width}x${height}+${width}+0 video2.mp4 &

# Launch the third video
mpv --geometry=${width}x${height}+0+${height} video3.mp4 &

# Launch the fourth video
mpv --geometry=${width}x${height}+${width}+${height} video4.mp4 &

相关内容