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
mpv gives this warning when there are no audio tracks and/or no subtitles. (ex: "allanime: citrus")
[file] Cannot open file '': No such file or directory
Failed to open .
Can not open external file .
[file] Cannot open file '': No such file or directory
Failed to open .
Can not open external file .
This happens because the --audio-files and --sub-files options are empty mpv --audio-files= --sub-files=, so it says it can't open the file "" (empty).
The options above are added only when audio_tracks and subtitles are not None, but it does not take into consideration the case when it's an empty list [].
A possible solution would be
- if audio_tracks is not None:+ if audio_tracks:
The text was updated successfully, but these errors were encountered:
mpv gives this warning when there are no audio tracks and/or no subtitles. (ex: "allanime: citrus")
This happens because the
--audio-files
and--sub-files
options are emptympv --audio-files= --sub-files=
, so it says it can't open the file "" (empty).The options above are added only when
audio_tracks
andsubtitles
are not None, but it does not take into consideration the case when it's an empty list [].A possible solution would be
The text was updated successfully, but these errors were encountered: