You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have mpv and libmpv1 installed and can play audio with it directly, but trying to play a file from within castero crashes with the following error:
Traceback (most recent call last):
File "/usr/local/bin/castero", line 6, in <module>
from castero.__main__ import main usr/local/lib/python3.5/dist-packages/castero/__main__.py", line 79, in <module> main()
File "/usr/local/lib/python3.5/dist-packages/castero/__main__.py", line 74, in main
running = display.handle_input(char)
File "/usr/local/lib/python3.5/dist-packages/castero/display.py", line 439, in handle_input
return self._get_active_perspective().handle_input(c)
File "/usr/local/lib/python3.5/dist-packages/castero/perspectives/primaryperspective.py", line 157, in handle_input
self._create_player_from_selected()
File "/usr/local/lib/python3.5/dist-packages/castero/perspectives/primaryperspective.py", line 261, in _create_player_from_selected
episode.get_playable(), episode)
File "/usr/local/lib/python3.5/dist-packages/castero/player.py", line 94, in create_instance
available_players[av_player].check_dependencies()
File "/usr/local/lib/python3.5/dist-packages/castero/players/mpvplayer.py", line 31, in check_dependencies
ModuleNotFoundError): NameError: name 'ModuleNotFoundError' is not defined
It looks like castero doesn't know how to find mpv. How can I fix this?
The text was updated successfully, but these errors were encountered:
I don't think this was actually caused by a load error, it was just because the ModuleNotFoundError didn't exist in Python 3.5. I've removed it as of 6839c24 since it was covered with an ImportError check anyway.
However, that may be indicative of an actual load error occurring. Feel free to reopen this issue if so.
I have mpv and libmpv1 installed and can play audio with it directly, but trying to play a file from within castero crashes with the following error:
It looks like castero doesn't know how to find mpv. How can I fix this?
The text was updated successfully, but these errors were encountered: