Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Halcyox/XRAgents
https://github.com/Halcyox/XRAgents
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/Halcyox/XRAgents
- Owner: Halcyox
- License: mit
- Created: 2022-08-15T23:01:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T19:11:28.000Z (7 months ago)
- Last Synced: 2024-05-16T02:37:05.618Z (6 months ago)
- Language: Python
- Size: 9.47 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- ideas-for-projects-people-would-use - attempted - time end to end on arbitrary humans, and nowhere close on quality with animation on cartoons (anime is close). (All Software / Text Processing/NLP)
README
# Metahumans Halcyox
## Building the docs
```sh
cd doc
.\make.bat html
```## Currently being refactored
# Priority Refactor items
* Restructuring the code flow to have one way dependency chain (rather than loop (Setting/Scene circular dependency))
* Defining object-oriented code structure
* Adding documentation
*# Non-priority Refactor items
* Encapsulation of data privacy (__id etc.)
* ZODB object saving persistence stuff
* Multithreading# Next time:
* Work on the batch generation of videos for two characters, and see how far you get.
* Also, work on the front end with Alice.## Priority TODO:
~~* Selection backend for voice options~~
* Set up simple server client app to get people to be able to access a server of talking to ai instance
* Screen record video
* Avatar creation/importing
* Record + stream blendshapes~~* Convert input script batch pipeline to work with our video generation scripts~~
* Make VidGen Server -> rendering server distribute accross mult computers
* Methods to upload videos to youtube -> google api integration~~* Multi-character (n-entity) scene methods, just give prim paths~~
* Talk to multiple AI simultaneously## Non-Priority TODO:
* emotional speech
* Optimization
* change azure to streaming for lower latency
* Connect your own camera to the output video with the AI
* Unreal integration
* SSML for voice style modification stuff## Web TODO:
* Figure out dependencies, Docker stuff, versions
* How to put on Amplify?
* Should we use EC2 instances or what?
* Website should have registration and billing
* Token system for AI voice credits## Marketing TODO:
* Affiliate marketing application to get other people to grow our software## LOCAL
1. mic input
2. speech to text
3. generate response
4. get .wav
5. run sh script## SERVER
### Directory Structure
```
XRAgents
├── LICENSE
├── README.md
├── alphademo
│ ├── videoproxy
│ │ ├── src
│ │ │ ├── main.rs
│ │ │ └── signal.rs
│ │ ├── brws_sess
│ │ ├── Cargo.lock
│ │ └── Cargo.toml
...
├── deps/streaming_server
...
├── xragents
│ ├── anim.py
│ ├── audio.py
│ ├── cast.py
│ ├── nlp.py
│ ├── scenes.py
│ ├── scriptgen.py
│ ├── session.py
│ ├── types.py
│ └── utils.py
└── digital-humans.db
```### Example Post Requests
##### Create Chararacter
http://digital-humans.loca.lt/create-character
characterName: Tom
characterDescription: Tom is a wise old man who genuinely cares about people.##### Create Session
http://digital-humans.loca.lt/create-session
sessionName: newSession
sessionDescription: The following is a conversation between you and Tom in the bookstore.
characterIDList: 1##### Get Response
http://digital-humans.loca.lt/get-response
promptText: What should I do to heal from heartbreak?
sessionID: 1
characterID: 1### Debug (ignore)
```
curl --location --request POST "https://eastus.tts.speech.microsoft.com/cognitiveservices/v1" --header "Ocp-Apim-Subscription-Key: bfc08e214f6c48cebcde668a433196d3" --header "Content-Type: application/ssml+xml" --header "X-Microsoft-OutputFormat: audio-16khz-128kbitrate-mono-mp3" --header "User-Agent: curl" --data-raw "I hate you! You ruined my life!" > C:\Users\phn431\Desktop\digital-humans-backend\wav\test.mp3
``````
curl --location --request POST "https://eastus.api.cognitive.microsoft.com/sts/v1.0/issuetoken" --header "Ocp-Apim-Subscription-Key: bfc08e214f6c48cebcde668a433196d3" --header 'Content-Type: application/ssml+xml' --header 'X-Microsoft-OutputFormat: audio-16khz-128kbitrate-mono-mp3' --header 'User-Agent: curl' --data-raw 'This is a test' > C:\Users\phn431\Desktop\digital-humans-backend\wav\test.wav
``````
curl --location --request POST "https://eastus.tts.speech.microsoft.com/cognitiveservices/v1" --header "Ocp-Apim-Subscription-Key: bfc08e214f6c48cebcde668a433196d3" --header 'Content-Type: application/ssml+xml' --header 'X-Microsoft-OutputFormat: audio-16khz-128kbitrate-mono-mp3' --header 'User-Agent: curl' --data-raw 'my voice is my passport verify me' > C:\Users\phn431\Desktop\digital-humans-backend\wav\test.wav
``````
curl --location --request POST "https://eastus.tts.speech.microsoft.com/cognitiveservices/v1" --header "Ocp-Apim-Subscription-Key: bfc08e214f6c48cebcde668a433196d3" --header "Content-Type: application/ssml+xml" --header "X-Microsoft-OutputFormat: audio-16khz-128kbitrate-mono-mp3" --header "User-Agent: curl" --data-raw "my voice is my passport verify me" > output.mp3
``````
key="YourSubscriptionKey"
region="YourServiceRegion"curl "https://eastus.tts.speech.microsoft.com/cognitiveservices/v1" `
--header "Ocp-Apim-Subscription-Key: bfc08e214f6c48cebcde668a433196d3" `
--header 'Content-Type: application/ssml+xml' `
--header 'X-Microsoft-OutputFormat: audio-16khz-128kbitrate-mono-mp3' `
--header 'User-Agent: curl' `
--data-raw '
my voice is my passport verify me
' > output.mp3
```