celluloid-player / celluloid

A simple GTK+ frontend for mpv
https://celluloid-player.github.io
GNU General Public License v3.0
1.09k stars 88 forks source link

--mpv-no-video option not working #936

Closed ttoommxx closed 3 months ago

ttoommxx commented 3 months ago

Overview Description:

Steps to Reproduce:

  1. run flatpak run io.github.celluloid_player.Celluloid --mpv-no-video

Actual Results: Failed to apply option: --no-video=(null)

Expected Results: Apply the option

Version: 0.26

Additional Information: I suspect it is try to run mpv with the argument --no-video=(something) but it should just run --no-video as an argument.. any idea how to fix this?

gnome-mpv commented 3 months ago

It looks like --no-video isn't available through libmpv. You can disable the video with --mpv-vid=no instead.

ttoommxx commented 3 months ago

Thanks, this works :)