mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-21 21:34:48 +08:00
Restore MediaInfo refiner (#494)
* Remove linux libmediainfo files * Uncomment refine_from_mediainfo call * Add libmediainfo warning on linux * Fix warning tooltip from libmediainfo to mediainfo
This commit is contained in:
parent
0fcef4d674
commit
97b3b42c96
6 changed files with 9 additions and 2 deletions
|
@ -72,8 +72,8 @@ def get_video(path, title, sceneName, use_scenename, use_mediainfo, providers=No
|
|||
video.original_path = original_path
|
||||
refine_from_db(original_path, video)
|
||||
|
||||
#if use_mediainfo:
|
||||
# refine_from_mediainfo(original_path, video)
|
||||
if use_mediainfo:
|
||||
refine_from_mediainfo(original_path, video)
|
||||
|
||||
logging.debug('BAZARR is using those video object properties: %s', vars(video))
|
||||
return video
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -37,6 +37,13 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="collapsed column">
|
||||
<div class="collapsed center aligned column">
|
||||
<div class="ui basic icon" data-tooltip="To use this feature on linux, please install mediainfo and its dependencies." data-inverted="">
|
||||
<i class="yellow warning sign icon"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="middle aligned row">
|
||||
|
|
Loading…
Reference in a new issue