Don't load edited videos to edit

This commit is contained in:
2025-09-04 16:08:28 +02:00
parent dbefc5b359
commit 10eed9efcd

View File

@@ -119,6 +119,7 @@ class VideoEditor:
if ( if (
file_path.is_file() file_path.is_file()
and file_path.suffix.lower() in self.VIDEO_EXTENSIONS and file_path.suffix.lower() in self.VIDEO_EXTENSIONS
and not "_edited" in file_path.name
): ):
video_files.append(file_path) video_files.append(file_path)
return sorted(video_files) return sorted(video_files)