Added video transcription
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
This commit is contained in:
14
app/Services/FileTools/Transcription/IAudioTranscriptor.php
Normal file
14
app/Services/FileTools/Transcription/IAudioTranscriptor.php
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user