added code to extract bluray images and folder structure. #1588

This commit is contained in:
clinton-hall 2019-03-30 13:21:01 +13:00
commit 82d1ba83ff

View file

@ -590,6 +590,7 @@ def process_list(it, new_dir, bitbucket):
new_list = [] new_list = []
combine = [] combine = []
vts_path = None vts_path = None
mts_path = None
success = True success = True
for item in it: for item in it:
ext = os.path.splitext(item)[1].lower() ext = os.path.splitext(item)[1].lower()
@ -605,6 +606,14 @@ def process_list(it, new_dir, bitbucket):
except Exception: except Exception:
vts_path = os.path.split(item)[0] vts_path = os.path.split(item)[0]
rem_list.append(item) rem_list.append(item)
elif re.match('.+BDMV[/\\]SOURCE[/\\][0-9]+[0-9].[Mm][Tt][Ss]', item) and '.mts' not in core.IGNOREEXTENSIONS:
logger.debug('Found MTS image file: {0}'.format(item), 'TRANSCODER')
if not mts_path:
try:
mts_path = re.match('(.+BDMV[/\\]SOURCE)', item).groups()[0]
except Exception:
mts_path = os.path.split(item)[0]
rem_list.append(item)
elif re.match('.+VIDEO_TS.', item) or re.match('.+VTS_[0-9][0-9]_[0-9].', item): elif re.match('.+VIDEO_TS.', item) or re.match('.+VTS_[0-9][0-9]_[0-9].', item):
rem_list.append(item) rem_list.append(item)
elif core.CONCAT and re.match('.+[cC][dD][0-9].', item): elif core.CONCAT and re.match('.+[cC][dD][0-9].', item):
@ -614,6 +623,8 @@ def process_list(it, new_dir, bitbucket):
continue continue
if vts_path: if vts_path:
new_list.extend(combine_vts(vts_path)) new_list.extend(combine_vts(vts_path))
if mts_path:
new_list.extend(combine_mts(mts_path))
if combine: if combine:
new_list.extend(combine_cd(combine)) new_list.extend(combine_cd(combine))
for file in new_list: for file in new_list:
@ -642,7 +653,7 @@ def rip_iso(item, new_dir, bitbucket):
return new_files return new_files
cmd = [core.SEVENZIP, 'l', item] cmd = [core.SEVENZIP, 'l', item]
try: try:
logger.debug('Attempting to extract .vob from image file {0}'.format(item), 'TRANSCODER') logger.debug('Attempting to extract .vob or .mts from image file {0}'.format(item), 'TRANSCODER')
print_cmd(cmd) print_cmd(cmd)
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=bitbucket) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=bitbucket)
out, err = proc.communicate() out, err = proc.communicate()
@ -656,6 +667,7 @@ def rip_iso(item, new_dir, bitbucket):
if file_match if file_match
] ]
combined = [] combined = []
if file_list: # handle DVD
for n in range(99): for n in range(99):
concat = [] concat = []
m = 1 m = 1
@ -675,11 +687,34 @@ def rip_iso(item, new_dir, bitbucket):
name=os.path.splitext(os.path.split(item)[1])[0], x=n + 1 name=os.path.splitext(os.path.split(item)[1])[0], x=n + 1
) )
new_files.append({item: {'name': name, 'files': concat}}) new_files.append({item: {'name': name, 'files': concat}})
else: #check BlueRay for BDMV/SOURCE/XXXX.MTS
mts_list_gen = (
re.match(r'.+(BDMV[/\\]SOURCE[/\\][0-9]+[0-9].[Mm][Tt][Ss])', line)
for line in out.decode().splitlines()
)
mts_list = [
file_match.groups()[0]
for file_match in mts_list_gen
if file_match
]
mts_list.sort(key=lambda f: int(filter(str.isdigit, f))) # Sot all .mts files in numerical order
n = 0
for mts_name in mts_list:
concat = []
n += 1
concat.append(mts_name)
if core.CONCAT:
combined.extend(concat)
continue
name = '{name}.cd{x}'.format(
name=os.path.splitext(os.path.split(item)[1])[0], x=n
)
new_files.append({item: {'name': name, 'files': concat}})
if core.CONCAT: if core.CONCAT:
name = os.path.splitext(os.path.split(item)[1])[0] name = os.path.splitext(os.path.split(item)[1])[0]
new_files.append({item: {'name': name, 'files': combined}}) new_files.append({item: {'name': name, 'files': combined}})
if not new_files: if not new_files:
logger.error('No VIDEO_TS folder found in image file {0}'.format(item), 'TRANSCODER') logger.error('No VIDEO_TS or BDMV/SOURCE folder found in image file {0}'.format(item), 'TRANSCODER')
new_files = [failure_dir] new_files = [failure_dir]
except Exception: except Exception:
logger.error('Failed to extract from image file {0}'.format(item), 'TRANSCODER') logger.error('Failed to extract from image file {0}'.format(item), 'TRANSCODER')
@ -711,6 +746,23 @@ def combine_vts(vts_path):
return new_files return new_files
def combine_mts(mts_path):
new_files = []
combined = ''
mts_list = [f for f in listdir(mts_path) if isfile(join(mts_path, f))]
mts_list.sort(key=lambda f: int(filter(str.isdigit, f)))
for mts_name in mts_list: ### need to sort all files [1 - 998].mts in order
concat = ''
concat += '{file}|'.format(file=os.path.join(mts_path, mts_name))
if core.CONCAT:
combined += '{files}|'.format(files=concat)
continue
new_files.append('concat:{0}'.format(concat[:-1]))
if core.CONCAT:
new_files.append('concat:{0}'.format(combined[:-1]))
return new_files
def combine_cd(combine): def combine_cd(combine):
new_files = [] new_files = []
for item in set([re.match('(.+)[cC][dD][0-9].', item).groups()[0] for item in combine]): for item in set([re.match('(.+)[cC][dD][0-9].', item).groups()[0] for item in combine]):