mirror of
https://github.com/Paillat-dev/FABLE.git
synced 2026-01-02 01:06:20 +00:00
chore(.gitignore): add bark_cache directory to gitignore
feat(video.py): use wav format instead of mp3 for generated audio files feat(montage.py): use Bark TTS instead of 🐸TTS feat(speak.py): add support for Bark TTS fix(speak.py): remove unused 🐸TTS import and variable fix(main.py): fix asyncio.run() call placement docs: update requirements.txt with new dependencies
This commit is contained in:
4
main.py
4
main.py
@@ -64,12 +64,12 @@ async def main():
|
||||
video = await channel.generate_video(idea)
|
||||
printm("Done!")
|
||||
printm("Here is the video:")
|
||||
printm(video)
|
||||
printm(video.url)
|
||||
input("Press enter to continue...")
|
||||
if __name__ == "__main__":
|
||||
while True:
|
||||
asyncio.run(main())
|
||||
try:
|
||||
asyncio.run(main())
|
||||
input("Press enter to continue or type ctrl+c to quit : ")
|
||||
clear_screen()
|
||||
except KeyboardInterrupt:
|
||||
|
||||
Reference in New Issue
Block a user