Files
Sub-Zero.bundle/Contents/Libraries/Shared/subliminal_patch/refiners/filebot.py
T
2017-12-22 03:40:48 +01:00

18 lines
285 B
Python

# coding=utf-8
from libfilebot import get_filebot_attrs
from common import update_video
def refine(video, **kwargs):
"""
:param video:
:param kwargs:
:return:
"""
orig_fn = get_filebot_attrs(video.name)
if orig_fn:
update_video(video, orig_fn)