Process failing #63
Replies: 1 comment 7 replies
-
Can you give a reproducible example? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i am getting the error message below...
since I am doing it for various episodes
I just zipped and made file names representing the episode number
My issue is after 40min in a 2h+ video it stops giving the file not found error.
which shouldn't be possible as I zipped the file without touching it
my 1st attempt at extraction was successful and I checked the .srt file as well
but all consecutive episodes failed.
FileNotFoundError: [Errno 2] No such file or directory: 'images/RGBImages/0_31_50_125__0_31_53_291_0002703480797010908540480.jpeg'
Traceback:
File "/home/user/.local/lib/python3.10/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 541, in _run_script
exec(code, module.dict)
File "/home/user/app/app.py", line 81, in
extractor(save_file_dir, output_dir)
File "/home/user/.local/lib/python3.10/site-packages/rapid_videocr/rapid_videocr.py", line 85, in call
srt_result, txt_result = self.single_rec(img_list)
File "/home/user/.local/lib/python3.10/site-packages/rapid_videocr/rapid_videocr.py", line 101, in single_rec
img = cv2.imdecode(np.fromfile(img_path, dtype=np.uint8), 1)
Beta Was this translation helpful? Give feedback.
All reactions