Added video transcription
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s

This commit is contained in:
2025-07-04 12:36:03 +02:00
parent a00c5ba4b8
commit f0e52147e4
8 changed files with 321 additions and 41 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace App\Services\FileTools\Transcription;
interface IAudioTranscriptor
{
/**
* Perform transcription on the given audio file.
*
* @param string $filePath The path to the audio file to be transcribed.
* @return string The transcribed text from the audio file.
*/
public function transcribe(string $filePath): ?string;
}