@@ -50,19 +50,22 @@ def get_video_fps(video_file):
50
50
print (f"Error getting FPS: { e } " )
51
51
return None
52
52
53
- def process_video (folder , verbose = True ):
53
+ def process_video (folder , verbose = True , extension = "h264" ):
54
54
"""
55
55
Process video in folder with detailed status updates and a progress bar.
56
56
"""
57
57
os .chdir (folder )
58
58
print (f"Processing folder: { folder } " )
59
59
60
- video_files = glob ("*.h264 " )
60
+ video_files = glob (f "*.{ extension } " )
61
61
if not video_files :
62
- print ("No .h264 files found in the folder." )
62
+ print (f "No .{ extension } files found in the folder." )
63
63
return
64
64
65
- print (f"Number of .h264 files: { len (video_files )} " )
65
+ # Sort files based on the last 5 digits in the filename
66
+ video_files .sort (key = lambda f : int (f .split ('_' )[- 1 ].split ('.' )[0 ]))
67
+
68
+ print (f"Number of .{ extension } files: { len (video_files )} " )
66
69
67
70
# Get the first video file to process
68
71
video_file = video_files [0 ]
@@ -76,10 +79,10 @@ def process_video(folder, verbose=True):
76
79
tmp_file = f"{ prefix } .tmp"
77
80
filename = f"{ prefix } .mp4"
78
81
79
- # Calculate total size of all .h264 files for progress reporting
82
+ # Calculate total size of all video files for progress reporting
80
83
total_size = sum (os .path .getsize (f ) for f in video_files )
81
84
readable_size = sizeof_fmt (total_size )
82
- print (f"Total size of all .h264 files: { readable_size } " )
85
+ print (f"Total size of all .{ extension } files: { readable_size } " )
83
86
84
87
# Merge files into one big chunk
85
88
with open (tmp_file , 'wb' ) as wfd :
@@ -113,16 +116,13 @@ def process_video(folder, verbose=True):
113
116
# Cleanup temporary files
114
117
os .system (f"rm { tmp_file } " )
115
118
116
- if verbose :
117
- print (f"\n Successfully processed files in folder { folder } " )
118
-
119
119
def print_progress (current_file , total_files , total_size , current_size ):
120
120
percent = (current_size / total_size ) * 100
121
121
bar_length = 40
122
122
filled_length = int (round (bar_length * current_file / float (total_files )))
123
123
bar = '#' * filled_length + '-' * (bar_length - filled_length )
124
- sys .stdout .write (f"\r Merging file { current_file } /{ total_files } |{ bar } | { percent :.2f} % Completed" )
125
- sys .stdout .flush ()
124
+ os . sys .stdout .write (f"\r Merging file { current_file } /{ total_files } |{ bar } | { percent :.2f} % Completed" )
125
+ os . sys .stdout .flush ()
126
126
127
127
128
128
def sizeof_fmt (num , suffix = 'B' ):
@@ -147,26 +147,34 @@ def list_mp4s (root_path):
147
147
return have_mp4s
148
148
149
149
150
- def crawl (root_path ):
150
+ def crawl (root_path , extension = "h264" , force = False ):
151
151
'''
152
152
crawl all terminal folders in root_path
153
153
'''
154
154
155
155
all_folders = [ x [0 ] for x in os .walk (root_path ) ]
156
156
157
157
have_mp4s = [p for p in all_folders if glob (os .path .join (p , "*.mp4" ))]
158
- terminal_folders = [p for p in all_folders if glob (os .path .join (p , "*.h264" ))]
158
+ terminal_folders = [p for p in all_folders if glob (os .path .join (p , f"*.{ extension } " ))]
159
+
159
160
160
- for folder in terminal_folders :
161
- if folder not in have_mp4s :
162
- process_video (folder )
161
+ # Choose folders based on the `force` condition
162
+ folders_to_process = terminal_folders if force else [folder for folder in terminal_folders if folder not in have_mp4s ]
163
+
164
+ # Print the number of new folders to process
165
+ print (f"We have { len (folders_to_process )} new folders to process" )
166
+
167
+ for folder in folders_to_process :
168
+ process_video (folder , extension )
163
169
164
170
165
171
if __name__ == '__main__' :
166
172
167
173
parser = OptionParser ()
168
174
parser .add_option ("-p" , "--path" , dest = "path" , default = "/ethoscope_data/videos" , help = "The root path containing the videos to process" )
169
175
parser .add_option ("-l" , "--list" , dest = "list" , default = False , help = "Returns a list of folders containing mp4 files" , action = "store_true" )
176
+ parser .add_option ("-e" , "--extension" , dest = "extension" , default = "h264" , help = "The extension of the video file chunks generated by the ethoscope" )
177
+ parser .add_option ("--force" , dest = "force" , default = False , help = "Force recreating videos even when MP4s are present" , action = "store_true" )
170
178
171
179
(options , args ) = parser .parse_args ()
172
180
option_dict = vars (options )
@@ -178,4 +186,8 @@ def crawl (root_path):
178
186
print ("Found %s folders with mp4 files" % len (l ))
179
187
os .sys .exit ()
180
188
181
- crawl ( option_dict ['path' ] )
189
+ crawl (
190
+ option_dict ['path' ],
191
+ extension = option_dict ["extension" ],
192
+ force = option_dict ["force" ]
193
+ )
0 commit comments