| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
0.1. Download and install gradle >= 5.2.1 (IDEA may offer install it automatically) [#Install and setup Gradle](see this); 0.2. Download and install open-jdk 1.8 (IDEA may offer install it automatically) [#Install and setup Open-JDK](see this);
To install and setup gradle follow these steps:
To install and setup gradle from Intellij IDEA try these steps:
Another way! Look at bottom of current "Settings" window and find gradle frame. Select into "Build and run using" field - Intellij IDEA
To install JDK yourself just need:
To install JDK from Intellij IDEA try to do these steps:
username: T3st0v password: T3st0v
First important stage is login as test user!
Creates new archive and returns id, name and status.
request: http://{address:port}/1/speechpad/create?model=default&name=test
response:
{
"speechpadId": "{id}",
"speechPadName": "test",
"success": true
}P.S.: I dont really know whf is it - POST request but passing params into URL... OMG!
Returns all archives.
request: http://{address:port}/1/speechpad/getAll
response:
{
"allSpeechpad": [
{
"name": "test",
"id": "{id}",
"transcriber": {
"model": "default",
"ready": false,
"transcribeResults": [],
"logger": {
"name": "RealtimeTranscriber"
}
}
}
],
"success": true
}Returns archive object by specified id.
request: http://{address:port}/1/speechpad/get?speechpad_id={id}
response:
{
"speechpad": {
"name": "test",
"id": "{id}",
"transcriber": {
"model": "default",
"ready": false,
"transcribeResults": [],
"logger": {
"name": "RealtimeTranscriber"
}
}
},
"success": true
}Returns renamed archive object.
request: http://{address:port}/1/speechpad/rename?speechpad_id={id}&new_name=test_new_name
response:
{
"newName": "test_new_name",
"speechpadId": "{id}",
"success": true
}Removes archive object by specified id.
request: http://{address:port}/1/speechpad/remove?speechpad_id={id}
response:
{
"success": true
}| Back | FazBrowse Home | New Git URL |