Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Интеграция с TMDBhelper #12

Open
patkino opened this issue Mar 30, 2024 · 1 comment
Open

Интеграция с TMDBhelper #12

patkino opened this issue Mar 30, 2024 · 1 comment

Comments

@patkino
Copy link

patkino commented Mar 30, 2024

Существует очень удобная возможность интеграции любых аддонов коди с Tmdbhelper. То есть используется база tmdb, а проигрыватель - сторонний - в данном случае filmix.
Получилось интегрировать для воспроизведения фильмов (plugin://plugin.video.filmix/search?keyword=)- работает очень хорошо.
Но сериалы не находит. Возможно есть особенность синтаксиса поиска эпизода. Если так - подскажите пожалуйста формат запроса на поиск конкретной серии.
Для примера такой запрос для elementum (работает с tmdbhelper):
plugin://plugin.video.elementum/library/play/show/{tmdb}/season/{season}/episode/{episode}

@patkino
Copy link
Author

patkino commented Mar 30, 2024

Сейчас json файл интеграции выглядит так. Фильмы воспроизводит, сериалы - нет.

{
"name": "Filmix",
"plugin": "plugin.video.filmix",
"priority": 100,
"assert": {
"play_movie": [
"title",
"year"
],
"play_episode": [
"showname",
"season",
"episode"
],
"search_movie": [
"title"
],
"search_episode": [
"showname"
]
},
"play_movie": [
"plugin://plugin.video.filmix/search?keyword={title_url}",
{
"title": "(?i)^(\[.\])?.{title}.(\[.\])?$",
"year": "{year}"
}
],
"play_episode": [
"plugin://plugin.video.filmix/search?keyword={showname_url}",
{
"title": "(?i)^(\[.\])?{showname}(\[.\])?$"
},
{
"return": "true",
"season": "^{season}$",
"episode": "^{episode}$"
},
{
"season": "^{season}$"
},
{
"season": "^{season}$",
"episode": "^{episode}$"
}
],
"search_movie": [
"plugin://plugin.video.filmix/search?keyword={title_url}",
{
"keyboard": "{title}"
}
],
"search_episode": [
"plugin://plugin.video.filmix/search?keyword={showname_url}",
{
"keyboard": "{showname}"
}
],
"is_resolvable": "true"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant