File size: 879 Bytes
0fe931e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# PVQ Manipulation

This repository contains code for manipulating perceptual voice quality (PVQ) features, intended for experiments and synthesis using models such as YourTTS.

---

## Installation

### Clone the repository and install

```sh
git clone https://github.com/FrederikRautenberg/pvq_manipulation.git
cd pvq_manipulation
pip install -e .
```

### Install [YourTTS](https://github.com/coqui-ai/TTS) from
```
git clone https://github.com/coqui-ai/TTS
cd TTS
pip install -e .[all,dev,notebooks]  # Select the relevant extras
```
### Make sure that [Paderbox](https://github.com/fgnt/paderbox) and [Padertorch](https://github.com/fgnt/padertorch?tab=readme-ov-file) are installed from 
```
git clone https://github.com/fgnt/paderbox.git
cd paderbox
pip install --editable .[all]
git clone https://github.com/fgnt/padertorch.git
cd padertorch && pip install -e .[all]
```