Fixes for libmpv v0.26.0

This commit is contained in:
jaseg 2017-08-03 00:53:27 +02:00
parent 5b3dedc309
commit e0591798f2
2 changed files with 12 additions and 5 deletions

View file

@ -135,8 +135,8 @@ class TestProperties(unittest.TestCase):
self.m[name]
def test_multivalued_option(self):
self.m['external-file'] = ['test.webm', b'test.webm']
self.assertEqual(self.m['external-file'], [b'test.webm', b'test.webm'])
self.m['external-files'] = ['test.webm', b'test.webm']
self.assertEqual(self.m['external-files'], [b'test.webm', b'test.webm'])
class ObservePropertyTest(unittest.TestCase):
@ -228,7 +228,7 @@ class TestLifecycle(unittest.TestCase):
def test_flags(self):
with self.assertRaises(AttributeError):
mpv.MPV('this-option-does-not-exist')
m = mpv.MPV('no-video', 'cursor-autohide-fs-only', 'fs')
m = mpv.MPV('cursor-autohide-fs-only', 'fs', video=False)
self.assertTrue(m.fullscreen)
self.assertEqual(m.cursor_autohide, '1000')
m.terminate()
@ -244,7 +244,7 @@ class TestLifecycle(unittest.TestCase):
def test_event_callback(self):
handler = mock.Mock()
m = mpv.MPV('no-video')
m = mpv.MPV(video=False)
m.register_event_callback(handler)
m.play(TESTVID)
m.wait_for_playback()
@ -262,7 +262,7 @@ class TestLifecycle(unittest.TestCase):
def test_log_handler(self):
handler = mock.Mock()
m = mpv.MPV('no-video', log_handler=handler)
m = mpv.MPV(video=False, log_handler=handler)
m.play(TESTVID)
m.wait_for_playback()
m.terminate()

7
mpv.py
View file

@ -1120,6 +1120,12 @@ ALL_PROPERTIES = {
'tv-contrast': (int, 'rw'),
'tv-saturation': (int, 'rw'),
'tv-hue': (int, 'rw'),
'tv-freq': (float, 'rw'),
'tv-norm': (str, 'rw'),
'tv-scan': (bool, 'rw'),
'tv-channel': (str, 'rw'),
'dvb-channel': (_node, 'rw'),
'dvb-channel-name': (str, 'rw'),
'playlist-pos': (int, 'rw'),
'playlist-pos-1': (int, 'rw'), # ugh.
'playlist-count': (int, 'r'),
@ -1201,6 +1207,7 @@ ALL_PROPERTIES = {
'af': (_node, 'r', True),
'options': (_node, 'r', True),
'file-local-options': (_node, 'r', True),
'vo-passes': (_node, 'r', True),
'property-list': (_commalist,'r')}
def _bindproperty(MPV, name, proptype, access, decode_str=False):