voice = "
안녕하세요?
"
res = subprocess.Popen([‘curl’, ‘-v’, ‘-X’, ‘POST’, url,
’-H’, “Content-Type: application/xml”,
’-H’, “Authorization: b4e5257e61f7df0c8994a5d5eaf6ff58”,
’-d’, voice], stdout = subprocess.PIPE, stderr = subprocess.PIPE)
output, err = res.communicate()
f = open(‘audio_test.wav’, ‘wb’)
f.write(output)
f.close()
print(err)
위와같이 카카오 ssml 가이드에 있는 외부음원 합성 태그를 테스트 해보았습니다.
현재는 외부음원이 나온 후 voice(‘안녕하세요’)가 나오는데
외부음원과 함께(배경으로 깔리면서) voice(‘안녕하세요’)가 나오는 방식은 불가능한가요?