Files
DatBrowser/app/Services/FileTools/Transcription/IAudioTranscriptor.php
Matthias Guillitte f0e52147e4
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
Added video transcription
2025-07-04 12:36:03 +02:00

15 lines
366 B
PHP

<?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;
}