我知道 VLC 可以做到这一点但它停止工作了 :(
Gnome MPV 能做到吗?MPlayer 能做到吗?
它使通过视频学习太极拳变得容易得多。
答案1
答案2
从命令行,您要查找的选项是-vf mirror
因此,要观看镜像的视频文件,您可以使用:
mplayer myfile.mp4 -vf mirror
答案3
对于mpv
,不支持-vf mirror
来自的选项mplayer
。mpv 文档声称应该--vf=hflip
可以工作,但我收到了错误
[ffmpeg] Impossible to convert between the formats supported by the filter
'mpv_src_default_in' and the filter 'auto_scale_0'
[lavfi] failed to configure the filter graph
Disabling filter hflip.00 because it has failed.
对我来说真正有效的是mpv --lavfi-complex='[vid1] hflip [vo]' file.mp4