Fix video_params list access

This commit is contained in:
jaseg 2016-08-05 02:17:39 +02:00
parent 24c70a5ac8
commit dfdc201ac7
1 changed files with 2 additions and 2 deletions

4
mpv.py
View File

@ -506,11 +506,11 @@ class MPV(object):
@property
def video_params(self):
return self._get_dict('video-params/', _VIDEO_PARAMS_LIST)
return self._get_dict('video-params/', self._VIDEO_PARAMS_LIST)
@property
def video_out_params(self):
return self._get_dict('video-out-params/', _VIDEO_PARAMS_LIST)
return self._get_dict('video-out-params/', self._VIDEO_PARAMS_LIST)
@property
def playlist(self):