forgot to transform the data
Browse files
App/Generate/database/Model.py
CHANGED
|
@@ -167,6 +167,7 @@ class Project(orm.Model):
|
|
| 167 |
links.append(narration.narration_link)
|
| 168 |
|
| 169 |
transcript = await narration.tts._make_transcript(links=links, text=text)
|
|
|
|
| 170 |
return transcript
|
| 171 |
|
| 172 |
|
|
|
|
| 167 |
links.append(narration.narration_link)
|
| 168 |
|
| 169 |
transcript = await narration.tts._make_transcript(links=links, text=text)
|
| 170 |
+
transcript = transform_alignment_data(transcript)
|
| 171 |
return transcript
|
| 172 |
|
| 173 |
|