de en es fr
Let the machine help
Light teasing, exhibition, BDSM, sissyfication, watersports... with sounds and pictures


Post new topic Reply to topic  [ 92 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next
Author Message
 Re: AI Mistress / Master
PostPosted: Mon Dec 25, 2023 9:06 pm 
Offline
Shy
It may be possible to give the AI a voice output. Or to answer some questions by voice?


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Tue Dec 26, 2023 2:30 pm 
Offline
Addict
User avatar
uwegerlich wrote:
It may be possible to give the AI a voice output. Or to answer some questions by voice?



Yeah thats possible. I already wrote audio output for SS (Had the idea for a script that you are supposed to do blindfolded and you dont know when or if pictures are taken). IT currently only works on windows though using ms speech.
Audio Input may also be possible (may be tricky with SS though since there is no inbuilt stuff for that).

I'll look into it if I have some time.

Also thanks to everyone for the feedback.


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Wed Dec 27, 2023 3:45 pm 
Offline
Veteran
User avatar
Interesting, I was wondering about Text to Speech via SexScripts. Is your script to do that uploaded?


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Wed Dec 27, 2023 9:17 pm 
Offline
Shy
Love this concept. I believe i have everything configured properly but when i run the script and i am asked to choose a personality there are no options and the script stops. I do not get an error message. Not sure what I am doing wrong I downloaded the latest version today and running Java 8.

Any help would be greatlyappreciated.


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Thu Dec 28, 2023 4:20 am 
Offline
Addict
Inside the scripts folder, there is the AI_Mistress folder, do you have a personality folder with a bunch of text files named pixy, roughie, etc? If not, they didn't get downloaded


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Thu Dec 28, 2023 4:03 pm 
Offline
Shy
Yes the folder is there with the 4 files


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Fri Dec 29, 2023 4:41 am 
Offline
Shy
shoebitch2399 wrote:
Love this concept. I believe i have everything configured properly but when i run the script and i am asked to choose a personality there are no options and the script stops. I do not get an error message. Not sure what I am doing wrong I downloaded the latest version today and running Java 8.

Any help would be greatlyappreciated.


make sure you have something set in Toys, Womens clothes, and Mens Clothes.


Attachments:
menu.png
menu.png [ 5.23 KiB | Viewed 8326 times ]
Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Fri Dec 29, 2023 8:38 am 
Offline
Addict
User avatar
arthurb wrote:
Interesting, I was wondering about Text to Speech via SexScripts. Is your script to do that uploaded?


There is various ways to get it working. I think to get android support the only way would be to query some online tts service.

I didnt upload any script that uses it but here is my snippet.

Code:
//Run TTS in Powershell
def sayText = { String text ->
    show(text)
    text = text.replaceAll("'", "''")
    String powershellCommand = "powershell -Command \"Add-Type –AssemblyName System.Speech; " +
                               "(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('${text}');\""
    def process = powershellCommand.execute()
    process.waitFor()
}

// Example
sayText("Hello, this is text to speech.")


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Fri Dec 29, 2023 8:50 am 
Offline
Addict
User avatar
shoebitch2399 wrote:
Yes the folder is there with the 4 files


Not sure whats going on there.
Really make sure that you extracted the Script completely.

Personalities must be in your SS Folder under "/scripts/AI_Mistress/personalities/"

You could also open the script and replace the loadMistressPersonalities functions with this one to get some visible debug:
Code:
def loadMistressPersonalities = { ->
    def personalitiesDir = new File(getDataFolder()+'/scripts/AI_Mistress/personalities/')
    def personalities = []
    def jsonSlurper = new groovy.json.JsonSlurper()

    if (personalitiesDir.exists() && personalitiesDir.isDirectory()) {
        personalitiesDir.eachFile { file ->
            if (file.name.endsWith('.txt')) {
                def json = jsonSlurper.parseText(file.text)
                if(json.bgcolor?.startsWith("0x")){
                    json.bgcolor = Integer.parseInt(json.bgcolor.substring(2), 16)
                }
                personalities << json
            }
        }
    } else {
        show("The personalities directory does not exist or is not a directory.")
    }

    return personalities
}


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Fri Dec 29, 2023 3:22 pm 
Offline
Veteran
User avatar
pixy wrote:
arthurb wrote:
Interesting, I was wondering about Text to Speech via SexScripts. Is your script to do that uploaded?


There is various ways to get it working. I think to get android support the only way would be to query some online tts service.

I didnt upload any script that uses it but here is my snippet.

Code:
//Run TTS in Powershell
def sayText = { String text ->
    show(text)
    text = text.replaceAll("'", "''")
    String powershellCommand = "powershell -Command \"Add-Type –AssemblyName System.Speech; " +
                               "(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('${text}');\""
    def process = powershellCommand.execute()
    process.waitFor()
}

// Example
sayText("Hello, this is text to speech.")


That's great, works fine 8-)


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Fri Dec 29, 2023 4:21 pm 
Offline
Shy
Thanks for info. It solved the problem. I had not put the AI_Mistress folder in the SS scripts folder.


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Mon Jan 01, 2024 10:43 pm 
Offline
Regular
User avatar
Wow, just tested the script and worked fine so far. This has so much potential! Thank you very much.


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Thu Jan 04, 2024 11:43 am 
Offline
Regular
Can u help me please. I cant find where to accelerate GPU.


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Sat Jan 06, 2024 8:30 pm 
Offline
Regular
Hey really nice, please keep going :)


Top
 Profile Send private message 
 
 Re: AI Mistress / Master
PostPosted: Wed Jan 10, 2024 1:01 pm 
Offline
Regular
When i wanted to change speed, computer found TROYAN HORSE VIRUS. I deleted everything.


Top
 Profile Send private message 
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 92 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
Maroon Fusion theme created by Oxydo
Software, theme modifications, phpBB modification by Doti 2010 - 2020
This website uses session cookies only.