mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 01:27:07 +00:00
no log: update embedded subtitles provider release info representation
This commit is contained in:
parent
0427c83cda
commit
e186bd1a0f
1 changed files with 6 additions and 1 deletions
|
@ -40,7 +40,7 @@ class EmbeddedSubtitle(Subtitle):
|
|||
self.container: FFprobeVideoContainer = container
|
||||
self.forced = stream.disposition.forced
|
||||
self.page_link = self.container.path
|
||||
self.release_info = os.path.basename(self.page_link)
|
||||
self.release_info = _get_pretty_release_name(stream, container)
|
||||
self.media_type = media_type
|
||||
|
||||
self._matches: set = matches
|
||||
|
@ -272,3 +272,8 @@ def _is_fuse_rclone_mount(path: str):
|
|||
# https://forum.rclone.org/t/fuse-inode-number-aufs/215/5
|
||||
# https://pkg.go.dev/bazil.org/fuse/fs?utm_source=godoc#GenerateDynamicInode
|
||||
return len(str(os.stat(path).st_ino)) > 18
|
||||
|
||||
|
||||
def _get_pretty_release_name(stream, container):
|
||||
bname = os.path.basename(container.path)
|
||||
return f"{os.path.splitext(bname)[0]}.{stream.suffix}"
|
||||
|
|
Loading…
Reference in a new issue