Skip to content

Commit 2fdd2ed

Browse files
adding ffmpeg/libav links for python binding
1 parent fce0e28 commit 2fdd2ed

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/SConscript

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,13 @@ jAvTranscoder = envJava.SharedLibrary(
5050
pyAvTranscoder = envPy.SharedLibrary(
5151
'pyAvTranscoder',
5252
source='AvTranscoder/avTranscoder.i',
53-
LIBS=[ sAvTranscoder ],
53+
LIBS=[
54+
sAvTranscoder,
55+
'libavutil',
56+
'libavcodec',
57+
'libavformat',
58+
'libswscale',
59+
],
5460
)
5561

5662
avTranscoder_class = env.Java(

0 commit comments

Comments
 (0)