我想使用WAVE
模块制作gTTS
个文件。
我从https://pypi.python.org/pypi/gTTS`
下载了gTTS
模块
我可以通过它制作一些文件并通过点击这些文件来传输声音。
但我想知道gTTS
可以保存哪种文件?
以下是示例代码:
import tempfile
from gtts import gTTS
tts = gTTS(text='hello', lang='en', slow=True)
tts.save("hello.wav")
f = tempfile.TemporaryFile()
tts.write_to_fp(f)
f.close()
当我将声音文件与我的代码一起使用时,我无法实现它。
from PySide import QtGui
from PySide import QtCore
import sys
import os
class HelloSpeaker(QtGui.QPushButton):
def __init__(self,parent=None):
super(HelloSpeaker,self).__init__(parent=None)
self.setText("Stream")
self.connect(self,QtCore.SIGNAL("clicked()"),self.play_sound)
def play_sound(self):
sound = QtGui.QSound(os.getcwd()+"hello.wav")
sound.play(os.getcwd()+"hello.wav")
def main():
try:
QtGui.QApplication([])
except Exception as e:
print(28,e)
hello = HelloSpeaker()
hello.show()
sys.exit(QtGui.QApplication.exec_())
if __name__ == "__main__":
main()
是的,我在堆栈溢出中发现了一些QSound问题。
由于一些不明原因,QSound不能工作。
例如:
QSound::play("soundpath") call works but a QSound object doesn't Playing sound with Pyqt4 and QSound QT5 QSound does not play all wave files
其他人受到打扰。
但我并不认为是QSound而且我怀疑gTTS不能制作.wav
个文件。
因为
import wave
wf = wave.open("hello.wav", "rb")
结果:
wave.Error: file does not start with RIFF id
我听说此错误显示此文件不是wave文件。
所以我想知道gTTS不会制造" .wav"文件。 (但是我可以通过ITunes,其他玩家来玩它。)
可gTTS
制作" mp3"仅限文件?
环境:
python 3.6.3 pyside1.2.4
答案 0 :(得分:1)
gTTS只保存字节而不进行任何转换,这些字节用mp3编码,您可以通过查看source code验证它:
....
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=InsecureRequestWarning)
r = requests.get(self.GOOGLE_TTS_URL,
params=payload,
headers=headers,
proxies=urllib.request.getproxies(),
verify=False)
if self.debug:
print("Headers: {}".format(r.request.headers))
print("Request url: {}".format(r.request.url))
print("Response: {}, Redirects: {}".format(r.status_code, r.history))
r.raise_for_status()
for chunk in r.iter_content(chunk_size=1024): # write the bytes directly
fp.write(chunk)
...