Skip to content

Commit

Permalink
feat: adds step to create output directory (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Oct 31, 2024
1 parent 1aec96c commit 46b0f19
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/aind_behavior_video_transformation/transform_videos.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ def run_job(self) -> JobResponse:
self.job_settings.video_specific_compression_requests
)
job_out_dir_path = self.job_settings.output_directory.resolve()
Path(job_out_dir_path).mkdir(exist_ok=True)
job_in_dir_path = self.job_settings.input_source.resolve()
overrides = dict()
if video_comp_pairs:
Expand Down

0 comments on commit 46b0f19

Please sign in to comment.