Compare commits

...

3 Commits

2 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,4 @@
MIT License Copyright 2022 Antoine Van Elstraete <antoine@van-elstraete.net>
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -6,6 +6,7 @@ import subprocess
import logging import logging
from os import listdir, remove from os import listdir, remove
def get_infos(file): def get_infos(file):
''' '''
Cette fonction extrait les informations du film à l'aide de ffprobe et les stocke Cette fonction extrait les informations du film à l'aide de ffprobe et les stocke
@ -53,7 +54,7 @@ def get_infos(file):
} }
try: try:
a_stream_infos.update({'title': a_stream['tags']['title']}) a_stream_infos.update({'title': a_stream['tags']['title']})
except: except KeyError:
a_stream_infos.update({'title': 'No title'}) a_stream_infos.update({'title': 'No title'})
a_infos.append(a_stream_infos) a_infos.append(a_stream_infos)
s_infos = [] s_infos = []
@ -69,7 +70,9 @@ def get_infos(file):
hdr10_v_raw = subprocess.getoutput(hdr10_v_cmd) hdr10_v_raw = subprocess.getoutput(hdr10_v_cmd)
if 'metadata detected' in hdr10_v_raw: if 'metadata detected' in hdr10_v_raw:
hdr10_cmd = f'ffmpeg -loglevel panic -i {file} -c:v copy -vbsf hevc_mp4toannexb -f hevc - | hdr10plus_parser -o /tmp/{file}_hdr10_metadata.json -' hdr10_cmd = f'ffmpeg -loglevel panic -i {file} -c:v copy -vbsf hevc_mp4toannexb -f hevc - | hdr10plus_parser -o /tmp/{file}_hdr10_metadata.json -'
v_infos.update({'hdr10': True, 'hdr10_metdata': f'/tmp/{file}_hdr10_metadata.json'}) hdr10_cmd_res = subprocess.getoutput(hdr10_cmd)
logging.debug(hdr10_cmd_res)
v_infos.update({'hdr10plus': True, 'hdr10plus_metadata': f'/tmp/{file}_hdr10_metadata.json'})
infos = {'duration': duration, 'video': v_infos, 'audio': a_infos, 'subtitles': s_infos} infos = {'duration': duration, 'video': v_infos, 'audio': a_infos, 'subtitles': s_infos}
logging.debug("Informations du film : \n" + json.dumps(infos, indent=True)) logging.debug("Informations du film : \n" + json.dumps(infos, indent=True))
return infos return infos
@ -153,7 +156,6 @@ def extract_subs(file, track, lang):
def convert_audio(file, track, volume_adj, channels, channel_layout, language, title): def convert_audio(file, track, volume_adj, channels, channel_layout, language, title):
bitrate = f'{64*channels}k'
if channel_layout == "5.1(side)": if channel_layout == "5.1(side)":
channel_layout = "5.1" channel_layout = "5.1"
codec = 'libfdk_aac -vbr 5' codec = 'libfdk_aac -vbr 5'
@ -167,7 +169,7 @@ def convert_audio(file, track, volume_adj, channels, channel_layout, language, t
def convert_video(file, infos, start, crop, crf, animation): def convert_video(file, infos, start, crop, crf, animation):
str_start = "{:05d}".format(start) str_start = "{:05d}".format(start)
output = f'{file}_video_t{str_start}.mkv' output = f'{file}_video_t{str_start}.mkv'
fmt = "yuv420p10le" # Always 10-bits fmt = "yuv420p10le"
track = infos['video']['index'] track = infos['video']['index']
codec = 'libx265 -preset slower' codec = 'libx265 -preset slower'
hdr = '' hdr = ''
@ -208,8 +210,8 @@ def convert_video(file, infos, start, crop, crf, animation):
luminance = f'L\({max_luminance},{min_luminance}\)' luminance = f'L\({max_luminance},{min_luminance}\)'
master_display = green + blue + red + white_point + luminance master_display = green + blue + red + white_point + luminance
hdr = f'-x265-params hdr-opt=1:repeat-headers=1:colorprim={color_primaries}:transfer={color_transfer}:colormatrix={color_space}:master-display={master_display}:max-cll={light_level}' hdr = f'-x265-params hdr-opt=1:repeat-headers=1:colorprim={color_primaries}:transfer={color_transfer}:colormatrix={color_space}:master-display={master_display}:max-cll={light_level}'
except: except Exception as err:
logging.debug("Aucune information HDR") logging.debug(f"Aucune information HDR : {err}")
command = f'ffmpeg -loglevel error -i {file} -map 0:{track} -ss {start} -t 300 -an -sn -c:v {codec} {tune} {hdr} -crf {crf} -pix_fmt {fmt} -filter:v {crop} -y {output}' command = f'ffmpeg -loglevel error -i {file} -map 0:{track} -ss {start} -t 300 -an -sn -c:v {codec} {tune} {hdr} -crf {crf} -pix_fmt {fmt} -filter:v {crop} -y {output}'
logging.debug(command) logging.debug(command)
result = subprocess.getoutput(command) result = subprocess.getoutput(command)
@ -225,7 +227,7 @@ def create_mkv(filename):
json_data.append("--no-track-tags") json_data.append("--no-track-tags")
json_data.append("--no-global-tags") json_data.append("--no-global-tags")
json_data.append("--no-chapters") json_data.append("--no-chapters")
if not "t00000" in file: if "t00000" not in file:
json_data.append("+") json_data.append("+")
json_data.append("(") json_data.append("(")
json_data.append(file) json_data.append(file)