We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b68b08 commit 2e6516aCopy full SHA for 2e6516a
mpv.py
@@ -244,6 +244,11 @@ def _event_generator(handle):
244
raise StopIteration()
245
yield event
246
247
+def load_lua():
248
+ """ Use this function if you intend to use mpv's built-in lua interpreter. This is e.g. needed for playback of
249
+ youtube urls. """
250
+ CDLL('liblua.so', mode=RTLD_GLOBAL)
251
+
252
class MPV:
253
""" See man mpv(1) for the details of the implemented commands. """
254
def __init__(self, loop=None, **kwargs):
0 commit comments