0

私はこのようなコードを持っています

import vlc                      # no error
Instance = vlc.Instance()       # no error
MediaPlayer = Instance.media_player_new()  # error triggered  here

エラーメッセージは

Instance.media_player_new()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "vlc.py", line 895, in media_player_new
    p._instance = self
AttributeError: 'NoneType' object has no attribute '_instance'

Python 2.6 を使用しています。私のコードの問題は何ですか?

4

1 に答える 1