Closed wanghaisheng closed 3 years ago
for each scene,i can generate tts file for it. ,i can combine all tts file for scenes into a new audio then in ace_attorney_anim, something like this
sound_effects = do_video(config) do_audio(sound_effects) video = ffmpeg.input("test.mp4") audio = ffmpeg.input("final_se.mp3") ttsaudio=ffmpeg.input("allinone.mp3") if os.path.exists(output_filename): os.remove(output_filename) out = ffmpeg.output( video, audio, output_filename, vcodec="copy", acodec="aac", strict="experimental", ) out.run()
Hi! Sorry for being late. For an unknown reason i wasn't subscribed to my own repo. I'm gonna need a bit more info on this one,
Thanks.
This is being debated in #46
for each scene,i can generate tts file for it. ,i can combine all tts file for scenes into a new audio then in ace_attorney_anim, something like this