14 lines
356 B
PHP
14 lines
356 B
PHP
<?php
|
|
|
|
//define the template class
|
|
if (!interface_exists('ai_transcribe')) {
|
|
interface ai_transcribe {
|
|
public function set_path(string $audio_path);
|
|
public function set_filename(string $audio_filename);
|
|
public function transcribe() : string;
|
|
public function set_language(string $audio_language);
|
|
public function get_languages() : array;
|
|
}
|
|
}
|
|
|
|
?>
|