Skip to content

Commit

Permalink
Print if media is transcoding after title.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwalton3 committed Jan 28, 2020
1 parent 0808361 commit 8b57253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jellyfin_mpv_shim/media.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get_proper_title(self):
if year is not None:
title = "%s (%s)" % (title, year)
setattr(self, "_title", title)
return getattr(self, "_title")
return getattr(self, "_title") + (" (Transcode)" if self.is_transcode else "")

def set_trs_override(self, video_bitrate, force_transcode):
if force_transcode:
Expand Down

0 comments on commit 8b57253

Please sign in to comment.