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
Describe the bug
Some services have Atmos audio with a lower bitrate than the normal audio tracks. For example, normal E-AC-3 640 kb/s vs. atmos E-AC-3 448 kb/s.
To Reproduce
Steps to reproduce the behavior:
Download a title with Atmos audio from the service.
Expected behavior
Since atmos is considered superior, it should be selected instead of the 640 kb/s audio track.
Additional context
This seems to be caused by the following code in sort_audio (tracks.py):
self.audio.sort(
key=lambda x: float(x.bitrate or 0.0),
reverse=True
)```
The text was updated successfully, but these errors were encountered:
Describe the bug
Some services have Atmos audio with a lower bitrate than the normal audio tracks. For example, normal E-AC-3 640 kb/s vs. atmos E-AC-3 448 kb/s.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Since atmos is considered superior, it should be selected instead of the 640 kb/s audio track.
Additional context
This seems to be caused by the following code in sort_audio (tracks.py):
The text was updated successfully, but these errors were encountered: