Search found 7 matches

by Logically Anime
Sat Nov 24, 2018 5:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy won't load python script
Replies: 8
Views: 699

Re: Renpy won't load python script

You'd need to post your modified load.py so anyone helping can view why it isn't working... Of course, I didnt really change that much from the original however. import re import wave import pyaudio import thread import time from pydub import AudioSegment class TextToSpeech: CHUNK = 1024 def __init...
by Logically Anime
Sat Nov 24, 2018 2:24 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy won't load python script
Replies: 8
Views: 699

Re: Renpy won't load python script

trooper6 wrote: Sat Nov 24, 2018 2:12 am by the way, do you know that Renpy has a build in text to speech function?
https://www.renpy.org/doc/html/self_voicing.html
I do know this but i need a custom voice not the ms sam voice
by Logically Anime
Sat Nov 24, 2018 1:07 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy won't load python script
Replies: 8
Views: 699

Re: Renpy won't load python script

param:type=default is not valid syntax for Python 2.7 (typing only started in Python 3.5) You will need to recode those parts of the file to make it work in Ren'Py (basically alter all the words_pron_dict:str bits ... there might be more errors further though) Hah you were right. There were more er...
by Logically Anime
Fri Nov 23, 2018 2:30 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy won't load python script
Replies: 8
Views: 699

Re: Renpy won't load python script

Imperf3kt wrote: Fri Nov 23, 2018 12:13 am From what I can tell (I'm a novice in Python) it looks like there's an error in the file TextToSpeech.py in line 12.
The thing is it runs perfectly through actual python...
by Logically Anime
Thu Nov 22, 2018 10:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy won't load python script
Replies: 8
Views: 699

Renpy won't load python script

Hi there, I'm having problems with getting renpy work with this script https://github.com/alexram1313/text-to-speech-sample When I implement it call it using import TextToSpeech I get this error. While running game code: File "game/script-ch1.rpy", line 19, in script init python: File &quo...
by Logically Anime
Sat May 12, 2018 7:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Importing Python scripts / TTS?
Replies: 2
Views: 531

Re: Importing Python scripts / TTS?

DDLC is corrupting a lot of people. If you're new to python implement external modules and learn how to make any class from them is out of your reach and for regular users to explain. I suggest you to ask a coder to join the project (hopefully free) cause a task like require a strong coding backgro...
by Logically Anime
Fri May 11, 2018 8:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Importing Python scripts / TTS?
Replies: 2
Views: 531

Importing Python scripts / TTS?

So a little background info I am creating a mod of a game that brings voices to the characters. However, there is one part of the game where the character reads the player's Steam username or computer username. I was thinking for that, I would have a TTS engine with the voice actor as the voice usin...