background audio implementation p2.

removed debug calls and testing rn

style: removed useless comment imports
pull/880/head
Jason 2 years ago
parent c412155720
commit aeafb53da3

@ -48,8 +48,6 @@ class StreamlabsPolly:
else: else:
try: try:
print(body)
print(response.json())
voice_data = requests.get(response.json()["speak_url"]) voice_data = requests.get(response.json()["speak_url"])
with open(filepath, "wb") as f: with open(filepath, "wb") as f:
f.write(voice_data.content) f.write(voice_data.content)

@ -7,7 +7,6 @@ from utils.cleanup import cleanup
from utils.console import print_markdown, print_step from utils.console import print_markdown, print_step
from utils import settings from utils import settings
# from utils.checker import envUpdate
from video_creation.background import ( from video_creation.background import (
download_background, download_background,
chop_background_video, chop_background_video,

@ -4,11 +4,15 @@ import os
import re import re
from os.path import exists from os.path import exists
from typing import Tuple, Any from typing import Tuple, Any
import translators as ts from moviepy import *
from moviepy.audio.AudioClip import concatenate_audioclips, CompositeAudioClip
from moviepy.editor import (VideoFileClip, AudioFileClip, ImageClip, concatenate_videoclips, concatenate_audioclips, from moviepy.audio.fx.audio_normalize import audio_normalize
CompositeAudioClip, CompositeVideoClip, ) from moviepy.audio.io.AudioFileClip import AudioFileClip
from moviepy.video.io.ffmpeg_tools import ffmpeg_merge_video_audio, ffmpeg_extract_subclip from moviepy.video.VideoClip import ImageClip
from moviepy.video.compositing.CompositeVideoClip import CompositeVideoClip
from moviepy.video.compositing.concatenate import concatenate_videoclips
from moviepy.video.io.VideoFileClip import VideoFileClip
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
from rich.console import Console from rich.console import Console
import moviepy.editor as mpe import moviepy.editor as mpe
@ -18,7 +22,10 @@ from utils.videos import save_data
from utils import settings from utils import settings
console = Console() console = Console()
VOLUME_MULTIPLIER = settings.config["settings"]['background']["background_audio_volume"] try:
VOLUME_MULTIPLIER = settings.config["settings"]['background']["background_audio_volume"]
except (TypeError, KeyError):
VOLUME_MULTIPLIER = 1
W, H = 1080, 1920 W, H = 1080, 1920
@ -32,6 +39,7 @@ def name_normalize(name: str) -> str:
lang = settings.config["reddit"]["thread"]["post_lang"] lang = settings.config["reddit"]["thread"]["post_lang"]
if lang: if lang:
import translators as ts
print_substep("Translating filename...") print_substep("Translating filename...")
translated_name = ts.google(name, to_language=lang) translated_name = ts.google(name, to_language=lang)
return translated_name return translated_name
@ -110,8 +118,11 @@ def make_final_video(number_of_clips: int, length: int, reddit_obj: dict, backgr
print('Merging background audio with video') print('Merging background audio with video')
my_clip = mpe.VideoFileClip('assets/temp/temp.mp4') my_clip = mpe.VideoFileClip('assets/temp/temp.mp4')
audio_background = AudioFileClip("assets/backgrounds/background.mp3") audio_background = AudioFileClip("assets/backgrounds/background.mp3")
lowered_audio = audio_background.multiply_volume( lowered_audio = audio_background.fl(lambda gf, t: VOLUME_MULTIPLIER * gf(t),
VOLUME_MULTIPLIER) # lower volume by background_audio_volume, use with fx keep_duration=True) # to testr
#lowered_audio = audio_normalize(audio_background)
# lowered_audio = audio_background.multiply_volume( # todo get this to work
# VOLUME_MULTIPLIER) # lower volume by background_audio_volume, use with fx
lowered_audio = lowered_audio.subclip(0, my_clip.duration) # trim the audio to the length of the video lowered_audio = lowered_audio.subclip(0, my_clip.duration) # trim the audio to the length of the video
lowered_audio.set_duration(my_clip.duration) # set the duration of the audio to the length of the video lowered_audio.set_duration(my_clip.duration) # set the duration of the audio to the length of the video
final_audio = mpe.CompositeAudioClip([my_clip.audio, lowered_audio]) final_audio = mpe.CompositeAudioClip([my_clip.audio, lowered_audio])

Loading…
Cancel
Save