-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipeline.log
More file actions
123 lines (123 loc) · 9.65 KB
/
pipeline.log
File metadata and controls
123 lines (123 loc) · 9.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
2026-01-14 13:36:21,812 - VideoPipeline - INFO - Starting pipeline for: practice_1
2026-01-14 13:36:21,812 - VideoPipeline - INFO - STAGE 1: Video Analysis
2026-01-14 13:36:54,999 - VideoPipeline - INFO - Analysis complete
2026-01-14 13:36:54,999 - VideoPipeline - INFO - STAGE 2: Caption Generation
2026-01-14 13:36:57,263 - VideoPipeline - INFO - Captioning complete
2026-01-14 13:36:57,271 - VideoPipeline - INFO - STAGE 3: Video Enhancement
2026-01-14 13:36:57,392 - VideoPipeline - ERROR - Pipeline failed: [Errno 2] No such file or directory: 'rife-ncnn-vulkan'
Traceback (most recent call last):
File "/Users/pranavviswanathan/Programming/Lucera/src/main.py", line 55, in run
enhanced_video_path = self._run_enhancement()
File "/Users/pranavviswanathan/Programming/Lucera/src/main.py", line 126, in _run_enhancement
enhancement_result = enhancer.run_full_enhancement()
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 501, in run_full_enhancement
interp_result = self.interpolator.run_full_analysis()
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 281, in run_full_analysis
intermediate_dir = self.generate_intermediate_frames(frames_dir, frame_count)
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 218, in generate_intermediate_frames
subprocess.run(command, check=True, capture_output=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.13/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/subprocess.py", line 554, in run
with Popen(*popenargs, **kwargs) as process:
~~~~~^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.13/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/subprocess.py", line 1036, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
pass_fds, cwd, env,
^^^^^^^^^^^^^^^^^^^
...<5 lines>...
gid, gids, uid, umask,
^^^^^^^^^^^^^^^^^^^^^^
start_new_session, process_group)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.13/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/subprocess.py", line 1966, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'rife-ncnn-vulkan'
2026-01-14 13:41:44,401 - VideoPipeline - INFO - Starting pipeline for: practice_1
2026-01-14 13:41:44,401 - VideoPipeline - INFO - STAGE 1: Video Analysis
2026-01-14 13:42:17,199 - VideoPipeline - INFO - Analysis complete
2026-01-14 13:42:17,199 - VideoPipeline - INFO - STAGE 2: Caption Generation
2026-01-14 13:42:24,834 - VideoPipeline - INFO - Captioning complete
2026-01-14 13:42:24,840 - VideoPipeline - INFO - STAGE 3: Video Enhancement
2026-01-14 13:42:24,929 - VideoPipeline - ERROR - Pipeline failed: name 'shutil' is not defined
Traceback (most recent call last):
File "/Users/pranavviswanathan/Programming/Lucera/src/main.py", line 55, in run
enhanced_video_path = self._run_enhancement()
File "/Users/pranavviswanathan/Programming/Lucera/src/main.py", line 126, in _run_enhancement
enhancement_result = enhancer.run_full_enhancement()
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 514, in run_full_enhancement
interp_result = self.interpolator.run_full_analysis()
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 294, in run_full_analysis
intermediate_dir = self.generate_intermediate_frames(frames_dir, frame_count)
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 215, in generate_intermediate_frames
if not shutil.which(rife_cmd):
^^^^^^
NameError: name 'shutil' is not defined. Did you forget to import 'shutil'?
2026-01-14 13:43:59,746 - VideoPipeline - INFO - Starting pipeline for: practice_1
2026-01-14 13:43:59,746 - VideoPipeline - INFO - STAGE 1: Video Analysis
2026-01-14 13:44:33,110 - VideoPipeline - INFO - Analysis complete
2026-01-14 13:44:33,111 - VideoPipeline - INFO - STAGE 2: Caption Generation
2026-01-14 13:44:38,976 - VideoPipeline - INFO - Captioning complete
2026-01-14 13:44:38,984 - VideoPipeline - INFO - STAGE 3: Video Enhancement
2026-01-14 13:45:22,789 - VideoPipeline - ERROR - Pipeline failed: argument should be a str or an os.PathLike object where __fspath__ returns a str, not 'NoneType'
Traceback (most recent call last):
File "/Users/pranavviswanathan/Programming/Lucera/src/main.py", line 55, in run
enhanced_video_path = self._run_enhancement()
File "/Users/pranavviswanathan/Programming/Lucera/src/main.py", line 126, in _run_enhancement
enhancement_result = enhancer.run_full_enhancement()
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 522, in run_full_enhancement
upscale_result = self.upscaler.run_full_analysis()
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 147, in run_full_analysis
output_video = self.encode_video(final_frames)
File "/Users/pranavviswanathan/Programming/Lucera/src/utility_classes/video_enchancers.py", line 108, in encode_video
frame_pattern = Path(frames_dir) / "frame_%06d.png"
~~~~^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.13/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/pathlib/_local.py", line 503, in __init__
super().__init__(*args)
~~~~~~~~~~~~~~~~^^^^^^^
File "/opt/homebrew/Cellar/python@3.13/3.13.0_1/Frameworks/Python.framework/Versions/3.13/lib/python3.13/pathlib/_local.py", line 132, in __init__
raise TypeError(
...<2 lines>...
f"not {type(path).__name__!r}")
TypeError: argument should be a str or an os.PathLike object where __fspath__ returns a str, not 'NoneType'
2026-01-14 13:47:22,882 - VideoPipeline - INFO - Starting pipeline for: practice_1
2026-01-14 13:47:22,883 - VideoPipeline - INFO - STAGE 1: Video Analysis
2026-01-14 13:47:56,847 - VideoPipeline - INFO - Analysis complete
2026-01-14 13:47:56,847 - VideoPipeline - INFO - STAGE 2: Caption Generation
2026-01-14 13:48:02,509 - VideoPipeline - INFO - Captioning complete
2026-01-14 13:48:02,515 - VideoPipeline - INFO - STAGE 3: Video Enhancement
2026-01-14 13:48:46,505 - VideoPipeline - INFO - Enhancement complete. Enhanced video: /Users/pranavviswanathan/Programming/Lucera/src/utility_classes/interpolation_results/final_videos/practice_1_interpolated_ad162449.mp4
2026-01-14 13:48:46,505 - VideoPipeline - INFO - STAGE 4: HLS Packaging
2026-01-14 13:49:04,163 - VideoPipeline - INFO - Packaging complete
2026-01-14 13:49:04,163 - VideoPipeline - INFO - STAGE 5: Quality Verification (VMAF)
2026-01-14 13:49:08,234 - VideoPipeline - INFO - Quality check complete
2026-01-14 13:49:08,234 - VideoPipeline - INFO - STAGE 6: Final Reporting
2026-01-14 13:49:08,477 - VideoPipeline - INFO - Finalizing: Exporting artifacts to video directory
2026-01-14 13:49:08,948 - VideoPipeline - INFO - Exported: analysis_results
2026-01-14 13:49:08,950 - VideoPipeline - INFO - Exported: caption_results
2026-01-14 13:49:08,956 - VideoPipeline - INFO - Exported: final_quality_metrics
2026-01-14 13:49:08,957 - VideoPipeline - INFO - Exported final report: practice_1_final_report_558220c0.json
2026-01-14 13:49:08,957 - VideoPipeline - INFO - All results available in: practice_videos/lucera_results_practice_1
2026-01-14 13:49:08,957 - VideoPipeline - INFO - Pipeline completed successfully!
2026-01-14 18:31:21,264 - VideoPipeline - INFO - Starting pipeline for: practice_2
2026-01-14 18:31:21,264 - VideoPipeline - INFO - STAGE 1: Video Analysis
2026-01-14 18:31:44,448 - VideoPipeline - INFO - Analysis complete
2026-01-14 18:31:44,448 - VideoPipeline - INFO - STAGE 2: Caption Generation
2026-01-14 18:31:45,640 - VideoPipeline - INFO - Captioning complete
2026-01-14 18:31:45,648 - VideoPipeline - INFO - STAGE 3: Video Enhancement
2026-01-14 18:32:16,400 - VideoPipeline - INFO - Enhancement complete. Enhanced video: /Users/pranavviswanathan/Programming/Lucera/src/utility_classes/interpolation_results/final_videos/practice_2_interpolated_c1b680af.mp4
2026-01-14 18:32:16,400 - VideoPipeline - INFO - STAGE 3.5: Combining Video and Subtitles
2026-01-14 18:32:16,400 - VideoPipeline - INFO - embedding subtitles into: outputs/combined_practice_2.mp4
2026-01-14 18:32:16,449 - VideoPipeline - INFO - Combined video created at: outputs/combined_practice_2.mp4
2026-01-14 18:32:16,449 - VideoPipeline - INFO - STAGE 4: HLS Packaging
2026-01-14 18:32:26,743 - VideoPipeline - INFO - Packaging complete
2026-01-14 18:32:26,744 - VideoPipeline - INFO - STAGE 5: Quality Verification (VMAF)
2026-01-14 18:32:29,477 - VideoPipeline - INFO - Quality check complete
2026-01-14 18:32:29,477 - VideoPipeline - INFO - STAGE 6: Final Reporting
2026-01-14 18:32:29,689 - VideoPipeline - INFO - Finalizing: Exporting artifacts to video directory
2026-01-14 18:32:30,007 - VideoPipeline - INFO - Exported: analysis_results
2026-01-14 18:32:30,015 - VideoPipeline - INFO - Exported: caption_results
2026-01-14 18:32:30,036 - VideoPipeline - INFO - Exported: final_quality_metrics
2026-01-14 18:32:30,036 - VideoPipeline - INFO - Exported final report: practice_2_final_report_aceb5741.json
2026-01-14 18:32:30,036 - VideoPipeline - INFO - All results available in: practice_videos/lucera_results_practice_2
2026-01-14 18:32:30,036 - VideoPipeline - INFO - Pipeline completed successfully!