fix: Fix pass-through stt provider

Wasn't able to load File from app data

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr
2024-05-13 11:50:14 +02:00
parent 9864fc8bfa
commit 8d063386d2

View File

@@ -348,20 +348,7 @@ class Manager implements IManager {
public function process(?string $userId, array $input, callable $reportProgress): array {
try {
$folder = $this->appData->getFolder('audio2text');
} catch(\OCP\Files\NotFoundException) {
$folder = $this->appData->newFolder('audio2text');
}
/** @var SimpleFile $simpleFile */
$simpleFile = $folder->newFile(time() . '-' . rand(0, 100000), $input['input']->getContent());
$id = $simpleFile->getId();
/** @var File $file */
$file = current($this->rootFolder->getById($id));
if ($this->provider instanceof ISpeechToTextProviderWithUserId) {
$this->provider->setUserId($userId);
}
try {
$result = $this->provider->transcribeFile($file);
$result = $this->provider->transcribeFile($input['input']);
} catch (\RuntimeException $e) {
throw new ProcessingException($e->getMessage(), 0, $e);
}