Skip to content

Commit

Permalink
fix macos sorting bug
Browse files Browse the repository at this point in the history
closes  #265
  • Loading branch information
akai-katto committed Oct 23, 2022
1 parent 494d410 commit c9c5e36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _pre_process(self):
divide=3, output_dir=self._service_request.workspace)

# Find all the split video files ffmpeg produced in the folder.
divided_re_encoded_videos = glob.glob(os.path.join(self._service_request.workspace, "*.mkv"))
divided_re_encoded_videos = sorted(glob.glob(os.path.join(self._service_request.workspace, "*.mkv")))

# Create unique child_requests for each unique video, with the video being the input.
for x in range(0, len(divided_re_encoded_videos)):
Expand Down

0 comments on commit c9c5e36

Please sign in to comment.