diff options
author | jaseg <code@jaseg.net> | 2017-08-03 00:53:27 +0200 |
---|---|---|
committer | jaseg <code@jaseg.net> | 2017-08-03 00:53:27 +0200 |
commit | e0591798f287b730a3dcb829ed9bcfbaaf4ae51f (patch) | |
tree | 7e93652d55a3cebbef9a3603997387fe4cf674a2 /mpv.py | |
parent | 5b3dedc3096bfd59ca6d38b61cb6b665ad5df3eb (diff) | |
download | python-mpv-e0591798f287b730a3dcb829ed9bcfbaaf4ae51f.tar.gz python-mpv-e0591798f287b730a3dcb829ed9bcfbaaf4ae51f.tar.bz2 python-mpv-e0591798f287b730a3dcb829ed9bcfbaaf4ae51f.zip |
Fixes for libmpv v0.26.0
Diffstat (limited to 'mpv.py')
-rw-r--r-- | mpv.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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): |