#! /usr/bin/env python # -*- encoding: UTF-8 -*- """Example: Use sayToFile Method""" import qi import argparse import sys def main(session): """ This example uses the sayToFile method. It makes the robot say some text using the module, And write it in a file. """ # Get the service ALTextToSpeech. tts = session.service("ALTextToSpeech") #Says a test std::string, and save it into a file tts.sayToFile("This is a sample text, written in a file!", "/tmp/sample_text.raw") #Says a test std::string, and save it into a file tts.sayToFile("This is another sample text", "/tmp/sample_text.wav") if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("--ip", type=str, default="127.0.0.1", help="Robot IP address. On robot or Local Naoqi: use '127.0.0.1'.") parser.add_argument("--port", type=int, default=9559, help="Naoqi port number") args = parser.parse_args() session = qi.Session() try: session.connect("tcp://" + args.ip + ":" + str(args.port)) except RuntimeError: print ("Can't connect to Naoqi at ip \"" + args.ip + "\" on port " + str(args.port) +".\n" "Please check your script arguments. Run with -h option for help.") sys.exit(1) main(session)