Skip to content

Commit

Permalink
reduce music volume on story
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan authored Jun 18, 2024
1 parent 7114108 commit dbdd016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logos/animations/story.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def run_story_segment(clip, idx):
print("audio file 2", audio_file2.name)
silence = AudioSegment.silent(duration=INTRO_SCREEN_DURATION * 1000)
music = AudioSegment.from_mp3(audio_file.name)
music = music - 6
music = music - 12
music_with_silence = silence + music.fade_out(5000)
music_with_silence.export(audio_file2.name, format="mp3")
print("delete 2", audio_file.name)
Expand Down

0 comments on commit dbdd016

Please sign in to comment.