Added OCR and OpenAPI tools

This commit is contained in:
2025-06-09 16:27:14 +02:00
parent 20fca31ced
commit 67197c5c48
12 changed files with 402 additions and 2 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace App\FileTools\VideoDescriptor;
interface IVideoDescriptor
{
/**
* Get the video description.
*
* @param string $filePath The path to the video file.
* @return string The description of the video.
*/
public function getDescription(string $filePath): ?string;
}