From 45a67cb24435a2401a6da4c1ba043d6ea16af0b2 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Thu, 26 Jan 2023 12:07:15 -0500 Subject: [PATCH] Add LRV, TS video format support --- opendm/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendm/context.py b/opendm/context.py index 7bafdd5d..5c4b7a5c 100644 --- a/opendm/context.py +++ b/opendm/context.py @@ -41,7 +41,7 @@ settings_path = os.path.join(root_path, 'settings.yaml') # Define supported image extensions supported_extensions = {'.jpg','.jpeg','.png', '.tif', '.tiff', '.bmp'} -supported_video_extensions = {'.mp4', '.mov'} +supported_video_extensions = {'.mp4', '.mov', '.lrv', '.ts'} # Define the number of cores num_cores = multiprocessing.cpu_count()