Skip to content

Commit 387bd3e

Browse files
authored
Fix - remove emojis from section headers and add public asset link
1 parent a3ba2e1 commit 387bd3e

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to `audiostack` will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2.9.0] - 2025-01-23
8+
9+
### Fixed
10+
11+
- Removed emojis from PyPi document
12+
- Made example asset public
13+
714
## [2.8.2] - 2025-01-22
815

916
### Improvement

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
<br>
1212
</p>
1313

14-
## 🧐 About <a name = "about"></a>
14+
## About <a name = "about"></a>
1515

1616
This repository is actively maintained by [Audiostack](https://audiostack.ai/). For examples, recipes and api reference see the [api.audio docs](https://docs.audiostack.ai/reference/quick-start). Feel free to get in touch with any questions or feedback!
1717

18-
## :book: Changelog
18+
## Changelog
1919

2020
You can view [here](https://docs.audiostack.ai/changelog) our updated Changelog.
2121

22-
## 🏁 Getting Started <a name = "getting_started"></a>
22+
## Getting Started <a name = "getting_started"></a>
2323

2424
### Installation
2525

@@ -51,7 +51,7 @@ audiostack.assume_org_id = "your-org-id"
5151

5252
### Create your first audio asset
5353

54-
#### ✍️ First, create a Script.
54+
#### First, create a Script.
5555

5656
Audiostack Scripts are the first step in creating audio assets. Not only do they contain the text to be spoken, but also determine the final structure of our audio asset using the [Script Syntax](https://docs.audiostack.ai/docs/script-syntax).
5757

@@ -71,7 +71,7 @@ We are excited to see what you'll create with our product!
7171
""")
7272
```
7373

74-
#### 🎤 Now, let's read it out load.
74+
#### Now, let's read it out load.
7575

7676
We integrate all the major TTS voices in the market. You can browse them in our [voice library](https://library.audiostack.ai/).
7777

@@ -88,7 +88,7 @@ When you listen to these files, you'll notice each of them has a certain silence
8888
tts = audiostack.Speech.TTS.remove_padding(speechId=tts.speechId)
8989
```
9090

91-
#### 🎛️ Now let's mix the speech we just created with a [sound template](https://library.audiostack.ai/sound).
91+
#### Now let's mix the speech we just created with a [sound template](https://library.audiostack.ai/sound).
9292

9393
```python
9494
mix = audiostack.Production.Mix.create(speechItem=tts, soundTemplate="chill_vibes")
@@ -101,18 +101,18 @@ You can list all the sound templates to see what segments are available or even
101101
Mixing comes with a lot of options to tune your audio to sound just right.
102102
[More on this here.](https://docs.audiostack.ai/docs/advance-timing-parameters)
103103

104-
#### 🎧 At this point, we can download the mix as a wave file, or convert it to another format.
104+
#### At this point, we can download the mix as a wave file, or convert it to another format.
105105

106106
```python
107107
enc = audiostack.Delivery.Encoder.encode_mix(productionItem=mix, preset="mp3_high")
108108
enc.download(fileName="example")
109109
```
110110

111-
Easy right? 🔮 This is the final result:
111+
Easy right? This is the final result:
112112

113-
https://github.com/aflorithmic/audiostack-python/assets/64603095/6948cddb-4132-40a7-b84d-457f3fc0803d
113+
https://file.api.audio/pypi_example.mp3
114114

115-
## :speedboat: More quickstarts <a name = "quickstarts"></a>
115+
## More quickstarts <a name = "quickstarts"></a>
116116

117117
Get started with our [quickstart recipes](https://docs.audiostack.ai/docs/introduction).
118118

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "audiostack"
3-
version = "2.8.2"
3+
version = "2.9.0"
44
description = "Python SDK for Audiostack API"
55
authors = ["Aflorithmic <[email protected]>"]
66
repository = "https://github.com/aflorithmic/audiostack-python"

0 commit comments

Comments
 (0)