All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
15 lines
366 B
PHP
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;
|
|
}
|