Skip to content

Commit 21904ae

Browse files
committed
recompile for bumped ffmpeg lib release
1 parent 45a62a3 commit 21904ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

plotoptix/_load_lib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1209,9 +1209,10 @@ def __init__(self):
12091209
try:
12101210
c_encoder = cdll.LoadLibrary(os.path.join(os.path.dirname(__file__), BIN_PATH, "librndSharpEncoder.so"))
12111211
self._encoder_available = True
1212-
except:
1212+
except Exception as e:
12131213
print(82 * "*"); print(82 * "*")
12141214
print("Video encoding library initialization failed, encoding features are not available.")
1215+
print(e)
12151216
print(82 * "*"); print(82 * "*")
12161217
self._encoder_available = False
12171218

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)