Compare commits

...

1 commit
v1.0.8 ... main

Author SHA1 Message Date
jaseg
b26b72e183 Fix typo in MPV.osd_overlay
Some checks failed
Tests / Linux - Python (push) Has been cancelled
Tests / Linux - Python-1 (push) Has been cancelled
Tests / Linux - Python-2 (push) Has been cancelled
Tests / Linux - Python-3 (push) Has been cancelled
Tests / Linux - Python-4 (push) Has been cancelled
Tests / Windows - Python (push) Has been cancelled
Tests / Windows - Python-1 (push) Has been cancelled
Tests / Windows - Python-2 (push) Has been cancelled
Tests / Windows - Python-3 (push) Has been cancelled
Tests / Windows - Python-4 (push) Has been cancelled
Closes #293
2025-04-25 11:54:22 +02:00

2
mpv.py
View file

@ -1529,7 +1529,7 @@ class MPV(object):
self.command('overlay_remove', overlay_id)
def osd_overlay(self, overlay_id, data, res_x=0, res_y=720, z=0, hidden=False):
self.command('osd_overlay', id=overlay_id, data=data, res_x=res_x, res_y=res_Y, z=z, hidden=hidden,
self.command('osd_overlay', id=overlay_id, data=data, res_x=res_x, res_y=res_y, z=z, hidden=hidden,
format='ass-events')
def osd_overlay_remove(self, overlay_id):