Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/55fb852fba504a1fc1030f30b68c4e2dd28fb80f You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix for ffprobe not being used correctly.

pull/954/head
Louis Vézina 5 years ago
parent f0e9c0f58a
commit 55fb852fba

@ -990,7 +990,10 @@ def refine_from_ffprobe(path, video):
video.video_codec = data['video'][0]['codec']
if 'frame_rate' in data['video'][0]:
if not video.fps:
video.fps = data['video'][0]['frame_rate'].magnitude
if isinstance(data['video'][0]['frame_rate'], float):
video.fps = data['video'][0]['frame_rate']
else:
video.fps = data['video'][0]['frame_rate'].magnitude
if 'audio' not in data:
logging.debug('BAZARR FFprobe was unable to find audio tracks in the file!')

Loading…
Cancel
Save