aap_software / video_color_search_client

最新版本(v1.0)的该软件包没有提供许可证信息。

用于视频截图搜索的Composer软件包

v1.0 2022-02-23 18:06 UTC

This package is auto-updated.

Last update: 2024-09-25 00:28:54 UTC


README

此库旨在通过视频截图查找电影信息,并获取帧的位置。

您可以使用此库在您的网站上放置搜索表单,上传截图并搜索视频标题和其他信息。

免费调用次数有限。要取消限制,请联系网站所有者。

关于视频颜色

Web-site screenshot

搜索信息

我们每天都会面临寻找信息的工作。您想找到文本、图像、音频或视频信息。通常,文本用于搜索查询。较少的是图像。有些服务如“Shazam”使用录音来搜索音乐。我们专注于构建一个搜索视频的搜索引擎。我们使用图像作为请求的参数。

我们的优势是什么?

简而言之,我们的技术允许我们以足够高的精度找到电影名称和一帧中的确切位置。这首先需要对索引文件进行分析。然后,结果输入到数据库中。同时,存储的数据量相对较小,数据存储结构允许非常有效地搜索。例如,根据我们的计算,配备约15 TB容量的高速PCI Express SSD硬盘的服务器将能够存储大约100万小时的视频信息,并且每秒能够执行数十(甚至数百)次搜索查询。

网站

www.videocolor.aapsoftware.ru

如何搜索视频?

Windows application screenshot Android application screenshot

测试

  • 打开终端
  • 转到包含脚本和sample.php文件的库文件夹
  • 输入命令

php sample.php test.jpg

您将看到如下文本

Title:  Round Midnight
Frame:  84155
Position:       0:58:29 (3509.97 sec)
Duration:       2:11:20 (7880.881 sec)
Producer:       Bertrand Tavernier
Country:
Creation year:  1986
Genre:  Drama, Music
Actors: Dexter Gordon, François Cluzet, Gabrielle Haker, Sandra Reaves-Phillips, Lonette McKee, Christine Pascal, Herbie Hancock, Bobby Hutcherson, Pierre Trabaud, Frédérique Meininger, Hart Leroy Bibbs, Liliane Rovère, Ged Marlon, Benoît Régent, Victoria Gabrielle Platt, Arthur French, John Berry, Martin Scorsese
IMDB:   http://www.imdb.com/title/tt0090557/
Kinopoisk:
Description:    In 'Round Midnight, real-life jazz legend Dexter Gordon brilliantly portrays the fictional tenor sax player Dale Turner, a musician slowly losing the battle with alcoholism, estranged from his family, and hanging on by a thread in the 1950's New York jazz world. Dale gets an offer to play in Paris, where, like many other black American musicians at the time, he enjoys a respect for his humanity that is not based upon the color of his skin. A Parisian man who is obsessed with Turner's music befriends him and attempts to save Turner from himself. Although for Dale the damage is already done, his poignant relationship with the man and his young daughter re-kindles his spirit and his music as the end draws near.

支持的语言

  • 英语
  • 俄语

使用示例

use AapSoftware\VideoColor\SearchClient;

...

$img = imagecreatefromjpeg($fname);
$search = new AapSoftware\VideoColor\SearchClient();
$obj = $search->get($img);
imagedestroy($img);

if ($obj === null) {
    echo "Server not connected!\n";
    return;
} elseif (!$obj->result) {
	echo "Not found\n";
} else {
	echo "Title:\t" . $obj->title . "\n";
	echo "Frame:\t" . $obj->frame."\n";
	echo "Position:\t" . $obj->position . "\n";
	echo "Duration:\t" . $obj->duration . "\n";
	echo "Producer:\t".$obj->producer."\n";
	echo "Country:\t".$obj->country."\n";
	echo "Creation year:\t".$obj->creation_year."\n";
	echo "Genre:\t".$obj->genre."\n";
	echo "Actors:\t".$obj->actors."\n";
	echo "IMDB:\t".$obj->imdb."\n";
	echo "Kinopoisk:\t".$obj->kinopoisk."\n";
	echo "Description:\t".$obj->description."\n";
}

英语

如果您想获取英文视频信息。

$obj = $search->get($img);

或者

$obj = $search->get($img,"en");

俄语

如果您想获取俄语视频信息。

$obj = $search->get($img,"ru");

俄语出版物