What is the difference between "copy" and "copy-equal"? #14721
-
For
The URL for this option: https://mpv.io/manual/master/#runtime-profiles Sorry, I am not a native English speaker, it's a bit difficult for me to figure it out. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The options set by the profile will only be restored if the current value is equal to the value set by the profile. This is so options you set during runtime aren't undone. |
Beta Was this translation helpful? Give feedback.
-
In this case, if you manually change the volume from 100 to 80 while pausing, volume=50
[test]
profile-cond=pause
profile-restore=copy-equal
volume=100 |
Beta Was this translation helpful? Give feedback.
In this case, if you manually change the volume from 100 to 80 while pausing,
copy
can restore volume from 80 to 50,but
copy-equal
can't, because 80 not equals 100.