mirror of
https://github.com/chev2/shitpost-video-generator.git
synced 2025-12-14 20:12:36 +00:00
Fix a variable using its old variable name
This commit is contained in:
parent
e16770b0a0
commit
e0916a91b7
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
|
@ -206,7 +206,7 @@ print("Finished compiling videos.")
|
|||
|
||||
finalVideo = editor.concatenate_videoclips(videoObjects, method="compose") # method="compose"
|
||||
|
||||
audioAmount = int(videoAmount*audio_multiplier)
|
||||
audioAmount = int(videoAmount*AUDIO_AMOUNT_MULTIPLIER)
|
||||
|
||||
randomSounds = rng.sample(audioFiles, min(audioAmount, len(audioFiles)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue