15 lines
320 B
PHP
15 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Services\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;
|
|
}
|