You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
- We introduced a new function called `set_assume_org_id` for incoming super organization feature. By using this method, you can assume the id of a child organization as their super organization, and make your calls on behalf of them.
9
+
10
+
- Friday 20th May 2022
11
+
v0.16.1
4
12
5
13
## Bug fixing
6
-
* We noticed in testing some additional latency caused by our feature flag implementation - so we refactored this to make it much faster. This was mostly visible in our custom voice implementations.
7
14
15
+
- We noticed in testing some additional latency caused by our feature flag implementation - so we refactored this to make it much faster. This was mostly visible in our custom voice implementations.
8
16
9
17
### Enhancements
10
-
* We added the ability to share audio with other users. It's a magic link feature.
11
-
For example
18
+
19
+
- We added the ability to share audio with other users. It's a magic link feature.
20
+
For example
21
+
12
22
```shell
13
23
curl -X POST \
14
24
'https://v1.api.audio/mastering' \
@@ -19,19 +29,20 @@ curl -X POST \
19
29
"share": true
20
30
}'
21
31
```
22
-
This returns a url - if you goto
23
-
24
-
https://console-api.audio/share?id=your_id
25
-
26
-
You'll get a page that you can share with your organisation and via Whatsapp and other social
27
-
networks.
28
32
29
-
* We've updated our [voice library page](https://library.api.audio/voices) to have faster loading and we've added some other improvements in the GET request for voices so you can have a better voice discovery experience. Most of this is backend and performance enhancements.
30
-
* Enhanced query parameters for voice discoverability
33
+
This returns a url - if you goto
34
+
35
+
https://console-api.audio/share?id=your_id
36
+
37
+
You'll get a page that you can share with your organisation and via Whatsapp and other social
38
+
networks.
39
+
40
+
- We've updated our [voice library page](https://library.api.audio/voices) to have faster loading and we've added some other improvements in the GET request for voices so you can have a better voice discovery experience. Most of this is backend and performance enhancements.
41
+
- Enhanced query parameters for voice discoverability
@@ -58,93 +68,103 @@ A `query` JSON is available in POST method.
58
68
59
69
```json
60
70
{
61
-
"query": {
62
-
"language": "english",
63
-
"provider": "polly"
64
-
}
71
+
"query": {
72
+
"language": "english",
73
+
"provider": "polly"
74
+
}
65
75
}
66
76
```
67
77
68
78
**List specific languages:**
69
79
70
80
```json
71
81
{
72
-
"query": {
73
-
"language": {
74
-
"$is_in": ["english", "spanish", "polish"]
75
-
}
82
+
"query": {
83
+
"language": {
84
+
"$is_in": ["english", "spanish", "polish"]
76
85
}
86
+
}
77
87
}
78
88
```
79
89
80
90
**List only private and public_paid tiers:**
81
91
82
92
```json
83
93
{
84
-
"query": {
85
-
"tier": {
86
-
"$ne": "public"
87
-
}
94
+
"query": {
95
+
"tier": {
96
+
"$ne": "public"
88
97
}
98
+
}
89
99
}
90
100
```
91
-
**List spanish voices where priority is less than or equal to 3:**
92
101
102
+
**List spanish voices where priority is less than or equal to 3:**
93
103
94
104
```json
95
105
{
96
-
"query": {
97
-
"language": "spanish",
98
-
"priority": {"$lte": 3}
99
-
}
106
+
"query": {
107
+
"language": "spanish",
108
+
"priority": {"$lte": 3}
109
+
}
100
110
}
101
111
```
102
-
There's a lot you can do with this so we hope this makes your develper experience easier.
112
+
113
+
There's a lot you can do with this so we hope this makes your develper experience easier.
103
114
104
115
## New released features
105
-
* Enhancements of voices. We've been testing with some users a more natural pauses to our custom voices. We contacted customers affected and some requested to not have this feature enabled please contact us if you want to use the old voices. We do feel that these voices are more natural and our beta testing was positive. These will be available soon under `msnr` voices in our API.
106
116
107
-
* As a developer user I want to share my audio with my team/bosses/business person so they can try and test the wonders of api.audio. We call this *virality link* and it's available in the console soon.
117
+
- Enhancements of voices. We've been testing with some users a more natural pauses to our custom voices. We contacted customers affected and some requested to not have this feature enabled please contact us if you want to use the old voices. We do feel that these voices are more natural and our beta testing was positive. These will be available soon under `msnr` voices in our API.
118
+
119
+
- As a developer user I want to share my audio with my team/bosses/business person so they can try and test the wonders of api.audio. We call this _virality link_ and it's available in the console soon.
108
120
109
-
* Friday 13th May 2022
121
+
- Friday 13th May 2022
110
122
111
123
v0.16.0
124
+
112
125
## Features
113
-
* We added new endFormat (for making sure your audio is the correct format for a target audience) this week we added Alexa preset
126
+
127
+
- We added new endFormat (for making sure your audio is the correct format for a target audience) this week we added Alexa preset
128
+
114
129
```python
115
130
m = apiaudio.Mastering().create(scriptId=GLOBAL_SCRIPT_ID, endFormat="mp3_alexa")
116
-
```
117
-
In the future we will add other endFormats - please tell us which ones you'd like.
131
+
```
118
132
119
-
* To continue to be able to offer free content to those of you still getting to know API.audio, we have added a watermark to our files.
133
+
In the future we will add other endFormats - please tell us which ones you'd like.
120
134
135
+
- To continue to be able to offer free content to those of you still getting to know API.audio, we have added a watermark to our files.
121
136
122
137
### Corporate features
123
-
* For our corporate plan users we've enabled `sandboxing` this allows you to test safely API requests without using up credits. Please contact your account manager for further details.
124
138
139
+
- For our corporate plan users we've enabled `sandboxing` this allows you to test safely API requests without using up credits. Please contact your account manager for further details.
125
140
126
141
## Breaking Changes
127
-
* Our feature (pronunciation dictionary) has had some usability enhancements. The biggest change is adding `useDictionary` as a boolean.
128
-
Here's an example
142
+
143
+
- Our feature (pronunciation dictionary) has had some usability enhancements. The biggest change is adding `useDictionary` as a boolean.
144
+
Here's an example
129
145
```python
130
146
scriptText ="""Hello I am reading a book in the city of <!location>reading<!> today"""
The addition of useDictionary and the change in behaviour is likely to present some breaking changes. We've notified any customers who are affected.
151
+
The addition of useDictionary and the change in behaviour is likely to present some breaking changes. We've notified any customers who are affected.
136
152
137
153
## Bug Fixing
154
+
138
155
We had some third party downtime with some voices from one provider. We notified them and fixed this issue.
139
156
140
157
## Maintenance
158
+
141
159
We have removed old code and streamlined other code using our Mastering engine. This will allow us to add features more easily whilst removing unnecessary complexity.
142
160
We also made various performance improvements and work in the background. Although not all of this will be customer facing, these incremental improvements are very important.
143
161
144
162
## Unreleased
163
+
145
164
(These are features that aren't added yet, but will be released next week)
146
-
* Enhancements of voices. We've been testing with some users a more natural pauses to our custom voices. We contacted customers affected and some requested to not have this feature enabled please contact us if you want to use the old voices. We do feel that these voices are more natural and our beta testing was positive. These will be available soon under `msnr` voices in our API.
147
165
148
-
* As a developer user I want to share my audio with my team/bosses/business person so they can try and test the wonders of api.audio. We call this *virality link* and it's available in the console soon.
166
+
- Enhancements of voices. We've been testing with some users a more natural pauses to our custom voices. We contacted customers affected and some requested to not have this feature enabled please contact us if you want to use the old voices. We do feel that these voices are more natural and our beta testing was positive. These will be available soon under `msnr` voices in our API.
167
+
168
+
- As a developer user I want to share my audio with my team/bosses/business person so they can try and test the wonders of api.audio. We call this _virality link_ and it's available in the console soon.
149
169
150
-
* We've been developing the usability of our data capture app for voice cloning (this is available in some plans). You'll see this in the next few weeks.
170
+
- We've been developing the usability of our data capture app for voice cloning (this is available in some plans). You'll see this in the next few weeks.
-`effect` (string) - Put a funny effect in your voice. You can try the following ones: `dark_father`, `chewie`, `88b`, `2r2d`,
321
+
-`effect` (string) - Put a funny effect in your voice. You can try the following ones: `dark_father`, `chewie`, `88b`, `2r2d`,
307
322
-`silencePadding` (integer) - Add a silence padding to your speech tracks (in milliseconds). Default is0 (no padding)
308
323
-`audience` (dict) - Specify the values of parameters in your script. For instance, ifin the script resource you have `scriptText="Hello {{name}}{{lastname}}, welcome to {{location}}"`, the audience should be: `{"name": "Elon", "lastname": "Musk", "location": "Istanbul"}`. If not provided, the fallback track will be created.
309
324
-`sync` (boolean) - Allow sync orasync speech creation. Default is`True`. If `sync=False`, speech create call will return a success message when the speech creation is triggered. To retrieve the files, check `Speech.retrieve()` method.
@@ -457,7 +472,7 @@ Mastering allows you to create and retrieve a mastered audio file of your script
457
472
458
473
Mastering methods are:
459
474
460
-
-`create()` Create a mastered version of your script and choose the audio format.
475
+
-`create()` Create a mastered version of your script and choose the audio format.
0 commit comments