Skip to content

Commit

Permalink
refactor(Audio): List lang after codec for consistency with other Tracks
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaphoenix committed Apr 14, 2024
1 parent 642ad39 commit 57b042f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devine/core/tracks/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def __str__(self) -> str:
return " | ".join(filter(bool, [
"AUD",
f"[{self.codec.value}]",
str(self.language),
str(self.channels or "?") + (f" (JOC {self.joc})" if self.joc else ""),
f"{self.bitrate // 1000 if self.bitrate else '?'} kb/s",
str(self.language),
self.get_track_name(),
self.edition
]))
Expand Down

0 comments on commit 57b042f

Please sign in to comment.