File "/app/modules/core.py", line 248, in start
os.makedirs(output_subfolder_path, exist_ok=True)
File "/usr/lib/python3.10/os.py", line 225, in makedirs
mkdir(name, mode)
NotADirectoryError: [Errno 20] Not a directory: '/app/output/output_files/sTest_1/sTest_1_tTest_1.mp4/sTest_2'
Should be /app/output/output_files/sTest_2 for next file and not /app/output/output_files/sTest_1/sTest_1_tTest_1.mp4/sTest_2.
Need to fix the logic for handling output file names.
Bug with batch processing in the latest release:
Should be
/app/output/output_files/sTest_2
for next file and not/app/output/output_files/sTest_1/sTest_1_tTest_1.mp4/sTest_2
.Need to fix the logic for handling output file names.