diff options
| author | b5f0d6c3 <[email protected]> | 2021-10-21 14:36:56 +0800 |
|---|---|---|
| committer | b5f0d6c3 <[email protected]> | 2021-10-21 14:36:56 +0800 |
| commit | d892eb787a007f8f1e409c516cb47538bb09c6b6 (patch) | |
| tree | 2ac961bee180ee888909d0707ca143e9a81f8bb1 /mkvlib/c/sdk.py | |
| parent | e441da2efef7ae71ae3b60d6ca7427d8001f7ed1 (diff) | |
update sdk.py
Diffstat (limited to 'mkvlib/c/sdk.py')
| -rw-r--r-- | mkvlib/c/sdk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkvlib/c/sdk.py b/mkvlib/c/sdk.py index cc8e6b2..de9f53d 100644 --- a/mkvlib/c/sdk.py +++ b/mkvlib/c/sdk.py @@ -17,9 +17,9 @@ def getMKVInfo(file): call.restype=c_char_p return call(file.encode()) -def dumpMKV(file,output,subset,dirSafe,lcb): +def dumpMKV(file,output,subset,lcb): call=lib.DumpMKV - return call(file.encode(),output.encode(),subset,dirSafe,lcb) + return call(file.encode(),output.encode(),subset,lcb) def checkSubset(file,lcb): call=lib.CheckSubset |
