forked from Vision-CAIR/MiniGPT4-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
split_long_video_in_parallel.py
61 lines (52 loc) · 2.44 KB
/
split_long_video_in_parallel.py
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
import os
import moviepy.editor as mp
from tqdm import tqdm
from multiprocessing import Pool, cpu_count
import time
def split_clip(args):
i, clip_duration, total_duration, input_path, output_folder = args
start_time = i * clip_duration
end_time = min((i + 1) * clip_duration, total_duration)
clip = mp.VideoFileClip(input_path).subclip(start_time, end_time)
save_name = f"{i + 1}".zfill(5)
output_path = os.path.join(output_folder, f"{save_name}.mp4")
clip.write_videofile(output_path, codec="libx264", audio_codec="aac")
clip.close()
def split_video(input_path, output_folder, clip_duration=80):
os.makedirs(output_folder, exist_ok=True)
if len(os.listdir(output_folder)) > 0:
return
video = mp.VideoFileClip(input_path)
total_duration = video.duration
num_clips = int(total_duration / clip_duration)
if total_duration % clip_duration != 0:
num_clips += 1
args_list = [(i, clip_duration, total_duration, input_path, output_folder) for i in range(num_clips)]
with Pool(processes=cpu_count()) as pool:
list(tqdm(pool.imap(split_clip, args_list), total=num_clips, desc="Splitting video"))
video.close()
def split_video_seq(input_path, output_folder, clip_duration=80):
os.makedirs(output_folder, exist_ok=True)
if len(os.listdir(output_folder)) > 0:
return
video = mp.VideoFileClip(input_path)
total_duration = video.duration
num_clips = int(total_duration / clip_duration)
if total_duration % clip_duration != 0:
num_clips += 1
for i in tqdm (range(num_clips), desc="Splitting video"):
start_time = i * clip_duration
end_time = min((i + 1) * clip_duration, total_duration)
clip = video.subclip(start_time, end_time)
save_name=f"{i + 1}".zfill(5)
output_path = os.path.join(output_folder, f"{save_name}.mp4")
clip.write_videofile(output_path, codec="libx264", audio_codec="aac")
video.close()
import argparse
parser = argparse.ArgumentParser(description="Split video")
parser.add_argument("--video_path", type=str,default="/ibex/project/c2133/minigpt4_v2_dataset/Friends/S01E01.mp4", help="Path to the video file or youtube url")
parser.add_argument("--output_folder", type=str,default="workspace/tmp/clips", help="Path to the output folder")
args = parser.parse_args()
t1 = time.time()
split_video(args.video_path, args.output_folder)
print("Time taken to split video from test parallel: ", time.time()-t1)