|
|
@ -3,7 +3,6 @@ import multiprocessing
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import re
|
|
|
|
from os.path import exists
|
|
|
|
from os.path import exists
|
|
|
|
|
|
|
|
|
|
|
|
from moviepy.editor import (
|
|
|
|
from moviepy.editor import (
|
|
|
|
VideoFileClip,
|
|
|
|
VideoFileClip,
|
|
|
|
AudioFileClip,
|
|
|
|
AudioFileClip,
|
|
|
@ -49,13 +48,7 @@ def make_final_video(number_of_clips: int, length: int, reddit_obj: dict[str]):
|
|
|
|
audio_concat = concatenate_audioclips(audio_clips)
|
|
|
|
audio_concat = concatenate_audioclips(audio_clips)
|
|
|
|
audio_composite = CompositeAudioClip([audio_concat])
|
|
|
|
audio_composite = CompositeAudioClip([audio_concat])
|
|
|
|
|
|
|
|
|
|
|
|
# Get sum of all clip lengths
|
|
|
|
console.log(f"[bold green] Video Will Be: {length} Seconds Long")
|
|
|
|
total_length = sum([clip.duration for clip in audio_clips])
|
|
|
|
|
|
|
|
# round total_length to an integer
|
|
|
|
|
|
|
|
int_total_length = round(total_length)
|
|
|
|
|
|
|
|
# Output Length
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log(f"[bold green] Video Will Be: {int_total_length} Seconds Long")
|
|
|
|
|
|
|
|
# add title to video
|
|
|
|
# add title to video
|
|
|
|
image_clips = []
|
|
|
|
image_clips = []
|
|
|
|
# Gather all images
|
|
|
|
# Gather all images
|
|
|
@ -127,7 +120,7 @@ def make_final_video(number_of_clips: int, length: int, reddit_obj: dict[str]):
|
|
|
|
threads=multiprocessing.cpu_count(),
|
|
|
|
threads=multiprocessing.cpu_count(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
ffmpeg_tools.ffmpeg_extract_subclip(
|
|
|
|
ffmpeg_tools.ffmpeg_extract_subclip(
|
|
|
|
"assets/temp/temp.mp4", 0, length, targetname=f"results/{subreddit}/{filename}"
|
|
|
|
"assets/temp/temp.mp4", 0, final.duration, targetname=f"results/{subreddit}/{filename}"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
# os.remove("assets/temp/temp.mp4")
|
|
|
|
# os.remove("assets/temp/temp.mp4")
|
|
|
|
|
|
|
|
|
|
|
|