Skip to content

Commit addbd04

Browse files
committed
Adds support for different video extensions to the h264_to_mp4 script
Adds option to overwrite existing MP4s Makes sure that files are merged in the right order
1 parent d7574d2 commit addbd04

File tree

1 file changed

+29
-17
lines changed

1 file changed

+29
-17
lines changed

accessories/h264_to_mp4.py

+29-17
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,22 @@ def get_video_fps(video_file):
5050
print(f"Error getting FPS: {e}")
5151
return None
5252

53-
def process_video(folder, verbose=True):
53+
def process_video(folder, verbose=True, extension="h264"):
5454
"""
5555
Process video in folder with detailed status updates and a progress bar.
5656
"""
5757
os.chdir(folder)
5858
print(f"Processing folder: {folder}")
5959

60-
video_files = glob("*.h264")
60+
video_files = glob(f"*.{extension}")
6161
if not video_files:
62-
print("No .h264 files found in the folder.")
62+
print(f"No .{extension} files found in the folder.")
6363
return
6464

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)}")
6669

6770
# Get the first video file to process
6871
video_file = video_files[0]
@@ -76,10 +79,10 @@ def process_video(folder, verbose=True):
7679
tmp_file = f"{prefix}.tmp"
7780
filename = f"{prefix}.mp4"
7881

79-
# Calculate total size of all .h264 files for progress reporting
82+
# Calculate total size of all video files for progress reporting
8083
total_size = sum(os.path.getsize(f) for f in video_files)
8184
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}")
8386

8487
# Merge files into one big chunk
8588
with open(tmp_file, 'wb') as wfd:
@@ -113,16 +116,13 @@ def process_video(folder, verbose=True):
113116
# Cleanup temporary files
114117
os.system(f"rm {tmp_file}")
115118

116-
if verbose:
117-
print(f"\nSuccessfully processed files in folder {folder}")
118-
119119
def print_progress(current_file, total_files, total_size, current_size):
120120
percent = (current_size / total_size) * 100
121121
bar_length = 40
122122
filled_length = int(round(bar_length * current_file / float(total_files)))
123123
bar = '#' * filled_length + '-' * (bar_length - filled_length)
124-
sys.stdout.write(f"\rMerging file {current_file}/{total_files} |{bar}| {percent:.2f}% Completed")
125-
sys.stdout.flush()
124+
os.sys.stdout.write(f"\rMerging file {current_file}/{total_files} |{bar}| {percent:.2f}% Completed")
125+
os.sys.stdout.flush()
126126

127127

128128
def sizeof_fmt(num, suffix='B'):
@@ -147,26 +147,34 @@ def list_mp4s (root_path):
147147
return have_mp4s
148148

149149

150-
def crawl (root_path):
150+
def crawl (root_path, extension="h264", force=False):
151151
'''
152152
crawl all terminal folders in root_path
153153
'''
154154

155155
all_folders = [ x[0] for x in os.walk(root_path) ]
156156

157157
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+
159160

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)
163169

164170

165171
if __name__ == '__main__':
166172

167173
parser = OptionParser()
168174
parser.add_option("-p", "--path", dest="path", default="/ethoscope_data/videos", help="The root path containing the videos to process")
169175
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")
170178

171179
(options, args) = parser.parse_args()
172180
option_dict = vars(options)
@@ -178,4 +186,8 @@ def crawl (root_path):
178186
print ("Found %s folders with mp4 files" % len(l))
179187
os.sys.exit()
180188

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

Comments
 (0)