-
Notifications
You must be signed in to change notification settings - Fork 38
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
Merged gplayers to tmdbplayers #106
base: tmdbhelper
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "Adina Auto Play", | ||
"plugin": "plugin.video.adina", | ||
"priority": 500, | ||
"play_movie": "plugin://plugin.video.adina/?mode=play_media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}", | ||
"play_episode": "plugin://plugin.video.adina/?mode=play_media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}", | ||
"is_resolvable": "false" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "Adina Source Select", | ||
"plugin": "plugin.video.adina", | ||
"priority": 500, | ||
"play_movie": "plugin://plugin.video.adina/?mode=play_media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}&autoplay=false", | ||
"play_episode": "plugin://plugin.video.adina/?mode=play_media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}&autoplay=false", | ||
"is_resolvable": "false" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "afFENity Auto Play", | ||
"plugin": "plugin.video.affenity", | ||
"priority": 500, | ||
"is_resolvable" : "true", | ||
"play_movie": "plugin://plugin.video.affenity/?mode=playback.media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}&autoplay=true", | ||
"play_episode": "plugin://plugin.video.affenity/?mode=playback.media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}&autoplay=true" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "afFENity Source Select", | ||
"plugin": "plugin.video.affenity", | ||
"priority": 500, | ||
"is_resolvable" : "true", | ||
"play_movie": "plugin://plugin.video.affenity/?mode=playback.media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}&autoplay=false", | ||
"play_episode": "plugin://plugin.video.affenity/?mode=playback.media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}&autoplay=false" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name" : "Amazon Prime Video", | ||
"plugin" : "plugin.video.amazon-test", | ||
"priority" : 100, | ||
"provider" : "Amazon Prime Video", | ||
"is_resolvable" : "true", | ||
"assert" : { | ||
"play_movie": ["title", "year"], | ||
"play_episode": ["showname", "season", "episode"], | ||
"search_movie": ["title"], | ||
"search_episode": ["showname"] | ||
}, | ||
"play_movie" : [ | ||
"plugin://plugin.video.amazon-test/", | ||
{"file": "(?i).*(mode=Search|/search/).*"}, | ||
{"keyboard": "{title}"}, | ||
{"label": "(?i).*{title}.*", "year": "{year}"} | ||
], | ||
"play_episode" : [ | ||
"plugin://plugin.video.amazon-test/", | ||
{"file": "(?i).*(mode=Search|/search/).*"}, | ||
{"keyboard": "{showname}"}, | ||
{"label": "(?i).*{showname}.*"}, | ||
{"return": "true", "season": "{season}", "episode": "{episode}"}, | ||
{"season": "{season}"}, | ||
{"season": "{season}", "episode": "{episode}"} | ||
], | ||
"search_movie" : [ | ||
"plugin://plugin.video.amazon-test/", | ||
{"file": "(?i).*(mode=Search|/search/).*"}, | ||
{"keyboard": "{title}"} | ||
], | ||
"search_episode" : [ | ||
"plugin://plugin.video.amazon-test/", | ||
{"file": "(?i).*(mode=Search|/search/).*"}, | ||
{"keyboard": "{showname}"} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name" : "Buds Auto Play", | ||
"plugin" : "plugin.video.buds", | ||
"priority" : 500, | ||
"play_movie" : "plugin://plugin.video.buds/?mode=play_media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}", | ||
"play_episode" : "plugin://plugin.video.buds/?mode=play_media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "Buds Source Select", | ||
"plugin": "plugin.video.buds", | ||
"priority": 500, | ||
"play_movie": "plugin://plugin.video.buds/?mode=play_media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}&autoplay=false", | ||
"play_episode": "plugin://plugin.video.buds/?mode=play_media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}&autoplay=false" | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file has an extra |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name" : "Coalition Auto Play", | ||
"plugin" : "plugin.video.coalition", | ||
"priority" : 500, | ||
"is_resolvable": "false", | ||
"play_movie" : "plugin://plugin.video.coalition/?mode=play_media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}", | ||
"play_episode" : "plugin://plugin.video.coalition/?mode=play_media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "Coalition Source Select", | ||
"plugin": "plugin.video.coalition", | ||
"priority": 500, | ||
"is_resolvable": "false", | ||
"play_movie": "plugin://plugin.video.coalition/?mode=play_media&media_type=movie&query={name}&year={year}&poster={poster}&title={title}&tmdb_id={id}&autoplay=false", | ||
"play_episode": "plugin://plugin.video.coalition/?mode=play_media&media_type=episode&query={showname}&year={year}&season={season}&episode={episode}&ep_name={title}&tmdb_id={tmdb}&premiered={firstaired}&autoplay=false" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name" : "9 Lives", | ||
"plugin" : "plugin.video.nine", | ||
"priority" : 200, | ||
"is_resolvable" : "true", | ||
"play_movie" : "plugin://plugin.video.nine/?action=play&title={title_+}&year={year}&imdb={imdb}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+%22{id}%22%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22tagline%22%3A+%22%22%2C+%22writer%22%3A+%22%22%2C+%22next%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22mediatype%22%3A+%22movie%22%2C+%22director%22%3A+%22%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22metacache%22%3A+true%2C+%22premiered%22%3A+%22{premiered}%22%2C+%22originaltitle%22%3A+%22{title_+}%22%2C+%22cast%22%3A+%5B%5B%22%22%5D%5D%2C+%22mpaa%22%3A+%22%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.nine%2F%3Faction%3Dtrailer%26name%3D{title_+}%2B%2528{year}%2529%22%7D&t={now}", | ||
"play_episode" : "plugin://plugin.video.nine/?action=play&title={title_+}&year={year}&imdb={imdb}&tvdb={id}&season={season}&episode={episode}&tvshowtitle={clearname_+}&premiered={firstaired}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+{tmdb}%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22thumb%22%3A+%22{thumbnail}%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22tvdb%22%3A+%22{id}%22%2C+%22label%22%3A+%22{title_+}%22%2C+%22season%22%3A+%22{season}%22%2C+%22status%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22tvshowtitle%22%3A+%22{clearname_+}%22%2C+%22mediatype%22%3A+%22episode%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22banner%22%3A+%22{thumbnail}%22%2C+%22episode%22%3A+%22{episode}%22%2C+%22premiered%22%3A+%22{firstaired}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.nine%2F%3Faction%3Dtrailer%26name%3D{clearname_+}%22%7D&t={now}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name" : "Absolution", | ||
"plugin" : "plugin.video.absolution", | ||
"priority" : 200, | ||
"is_resolvable" : "true", | ||
"play_movie" : "plugin://plugin.video.absolution/?action=play&title={title_+}&year={year}&imdb={imdb}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+%22{id}%22%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22tagline%22%3A+%22%22%2C+%22writer%22%3A+%22%22%2C+%22next%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22mediatype%22%3A+%22movie%22%2C+%22director%22%3A+%22%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22metacache%22%3A+true%2C+%22premiered%22%3A+%22{premiered}%22%2C+%22originaltitle%22%3A+%22{title_+}%22%2C+%22cast%22%3A+%5B%5B%22%22%5D%5D%2C+%22mpaa%22%3A+%22%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.absolution%2F%3Faction%3Dtrailer%26name%3D{title_+}%2B%2528{year}%2529%22%7D&t={now}", | ||
"play_episode" : "plugin://plugin.video.absolution/?action=play&title={title_+}&year={year}&imdb={imdb}&tvdb={id}&season={season}&episode={episode}&tvshowtitle={clearname_+}&premiered={firstaired}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+{tmdb}%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22thumb%22%3A+%22{thumbnail}%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22tvdb%22%3A+%22{id}%22%2C+%22label%22%3A+%22{title_+}%22%2C+%22season%22%3A+%22{season}%22%2C+%22status%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22tvshowtitle%22%3A+%22{clearname_+}%22%2C+%22mediatype%22%3A+%22episode%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22banner%22%3A+%22{thumbnail}%22%2C+%22episode%22%3A+%22{episode}%22%2C+%22premiered%22%3A+%22{firstaired}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.absolution%2F%3Faction%3Dtrailer%26name%3D{clearname_+}%22%7D&t={now}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name" : "[COLOR aqua]Alvin[/COLOR]", | ||
"plugin" : "plugin.video.alvin", | ||
"priority" : 100, | ||
"is_resolvable" : "false", | ||
"play_movie" : "plugin://plugin.video.alvin/?action=play&title={title_+}&year={year}&imdb={imdb}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+%22{id}%22%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22tagline%22%3A+%22%22%2C+%22writer%22%3A+%22%22%2C+%22next%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22mediatype%22%3A+%22movie%22%2C+%22director%22%3A+%22%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22metacache%22%3A+true%2C+%22premiered%22%3A+%22{premiered}%22%2C+%22originaltitle%22%3A+%22{title_+}%22%2C+%22cast%22%3A+%5B%5B%22%22%5D%5D%2C+%22mpaa%22%3A+%22%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.alvin%2F%3Faction%3Dtrailer%26name%3D{title_+}%2B%2528{year}%2529%22%7D&t={now}", | ||
"play_episode" : "plugin://plugin.video.alvin/?action=play&title={title_+}&year={year}&imdb={imdb}&tvdb={id}&season={season}&episode={episode}&tvshowtitle={clearname_+}&premiered={firstaired}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+{tmdb}%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22thumb%22%3A+%22{thumbnail}%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22tvdb%22%3A+%22{id}%22%2C+%22label%22%3A+%22{title_+}%22%2C+%22season%22%3A+%22{season}%22%2C+%22status%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22tvshowtitle%22%3A+%22{clearname_+}%22%2C+%22mediatype%22%3A+%22episode%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22banner%22%3A+%22{thumbnail}%22%2C+%22episode%22%3A+%22{episode}%22%2C+%22premiered%22%3A+%22{firstaired}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.alvin%2F%3Faction%3Dtrailer%26name%3D{clearname_+}%22%7D&t={now}" | ||
} | ||
"priority" : 300, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this priority being changed? |
||
"is_resolvable" : "true", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this addon now support resolvable links? |
||
"play_movie" : "plugin://plugin.video.alvin/?action=play&title={title_+}&year={year}&imdb={imdb}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+%22{id}%22%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22tagline%22%3A+%22%22%2C+%22writer%22%3A+%22%22%2C+%22next%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22mediatype%22%3A+%22movie%22%2C+%22director%22%3A+%22%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22metacache%22%3A+true%2C+%22premiered%22%3A+%22{premiered}%22%2C+%22originaltitle%22%3A+%22{title_+}%22%2C+%22cast%22%3A+%5B%5B%22%22%5D%5D%2C+%22mpaa%22%3A+%22%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.alvin%2F%3Faction%3Dtrailer%26name%3D{title_+}%2B%2528{year}%2529%22%7D&t={now}", | ||
"play_episode" : "plugin://plugin.video.alvin/?action=play&title={title_+}&year={year}&imdb={imdb}&tvdb={id}&season={season}&episode={episode}&tvshowtitle={clearname_+}&premiered={firstaired}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22tmdb%22%3A+{tmdb}%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22%22%2C+%22plot%22%3A+%22{plot}%22%2C+%22votes%22%3A+%22%22%2C+%22thumb%22%3A+%22{thumbnail}%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22tvdb%22%3A+%22{id}%22%2C+%22label%22%3A+%22{title_+}%22%2C+%22season%22%3A+%22{season}%22%2C+%22status%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22tvshowtitle%22%3A+%22{clearname_+}%22%2C+%22mediatype%22%3A+%22episode%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22banner%22%3A+%22{thumbnail}%22%2C+%22episode%22%3A+%22{episode}%22%2C+%22premiered%22%3A+%22{firstaired}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.alvin%2F%3Faction%3Dtrailer%26name%3D{clearname_+}%22%7D&t={now}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "Base19", | ||
"plugin": "plugin.video.base19", | ||
"priority": 500, | ||
"is_resolvable" : "true", | ||
"play_movie": "plugin://plugin.video.base19/?mode=15&dates=+&episode=+&description={plot_+}&show_original_year={year}&fanart={fanart}&heb_name={title_+}&iconimage={poster}&original_title={title_+}&eng_name=+&data={year}&url=www&fav_status=false&tmdbid=+&season=+&isr=0&last_id=&image_master=&id={id}name={title_+}&video_data=%7B%22rating%22%3A+%220%22%2C+%22episode%22%3A+0%2C+%22title%22%3A+%22{title_+}%22%2C+%22season%22%3A+0%2C+%22TVshowtitle%22%3A+%22%22%2C+%22mediatype%22%3A+%22movie%22%2C+%22plot%22%3A+%22{plot_+}%22%2C+%22OriginalTitle%22%3A+%22{title_+}%22%2C+%22year%22%3A+%22{year}%22%2C+%22genre%22%3A+%22 %22%2C+%22id%22%3A+%22{id}%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.base19%3Fmode%3D25%26id%3D{id}%26url%3Dmovie%22%7D", | ||
"play_episode": "plugin://plugin.video.base19/?mode=15&dates=+&episode={episode}&description={plot_+}&all_w=%7B%7D&show_original_year={year}&fanart={fanart}&heb_name={title_+}&iconimage={poster}&original_title={showname_+}&eng_name={clearname_+}&data={year}&url=www&fav_status=false&tmdbid={tvdb}&season={season}&isr=0&last_id=&image_master=&id={tmdb}&name={clearname_+}&video_data=%7B%22rating%22%3A+%220%22%2C+%22Episode%22%3A+{episode}%2C+%22title%22%3A+%22{title_+}%22%2C+%22Season%22%3A+{season}%2C+%22TVshowtitle%22%3A+%22{clearname_+}%22%2C+%22mediatype%22%3A+%22episode%22%2C+%22premiered%22%3A+%22{premiered}%22%2C+%22plot%22%3A+%22{plot_+}%22%2C+%22OriginalTitle%22%3A+%22{showname_+}%22%2C+%22year%22%3A+%22{year}%22%2C+%22id%22%3A+%22{tmdb}%22%7D&t={now}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name" : "[COLOR orange]Diggz Free99[/COLOR]", | ||
"plugin" : "plugin.video.free99", | ||
"priority" : 500, | ||
"is_resolvable" : "true", | ||
"play_movie" : "plugin://plugin.video.free99/?action=play&title={title_+}&year={year}&imdb={imdb}&t={now}", | ||
"play_episode" : "plugin://plugin.video.free99/?action=play&title={title_+}&year={year}&imdb={imdb}&tvdb={id}&season={season}&episode={episode}&tvshowtitle={clearname_+}&premiered={firstaired}&t={now}" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"name" : "[COLOR FFA0C12C]Gaia[/COLOR]", | ||
"plugin" : "plugin.video.gaia", | ||
"priority" : 200, | ||
"play_movie" : "plugin://plugin.video.gaia/?action=scrape&title={title_+}&year={year}&imdb={imdb}&meta=%7B%22rating%22%3A+%22%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22mediatype%22%3A+%22movie%22%2C+%22director%22%3A+%22%22%2C+%22duration%22%3A+%22{duration}%22%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22poster2%22%3A+%22{poster}%22%2C+%22banner%22%3A+%22{poster}%22%2C+%22metacache%22%3A+false%2C+%22plot%22%3A+%22{plot_+}%22%2C+%22votes%22%3A+%22%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22mpaa%22%3A+%22%22%2C+%22writer%22%3A+%22%22%2C+%22premiered%22%3A+%22{date}%22%2C+%22next%22%3A+%22http%3A%2F%2Fwww.imdb.com%2Fsearch%2Ftitle%3Ftitle_type%3Dfeature%2Ctv_movie%26languages%3Den%26num_votes%3D100%2C%26production_status%3Dreleased%26certificates%3Dus%253Ag%26sort%3Dmoviemeter%2Casc%26count%3D40%26start%3D1%26page%3D2%26ref_%3Dadv_nxt%22%2C+%22originaltitle%22%3A+%22{title_+}%22%2C+%22cast%22%3A+%5B%5B%22%22%2C+%22%22%5D%5D%2C+%22genre%22%3A+%22%22%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.gaia%2F%3Faction%3Dtrailer%26name%3D{title_+}%2B%2528{year}%2529%22%7D&t={now}", | ||
"play_episode" : "plugin://plugin.video.gaia/?action=scrape&title={title_+}&year={year}&imdb={imdb}&tvdb={tvdb}&season={season}&episode={episode}&tvshowtitle={clearname_+}&premiered={firstaired}&meta=%7B%22rating%22%3A+%22%22%2C+%22code%22%3A+%22{imdb}%22%2C+%22imdb%22%3A+%22{imdb}%22%2C+%22year%22%3A+%22{year}%22%2C+%22duration%22%3A+%22{duration}%22%2C+%22plot%22%3A+%22{plot_+}%22%2C+%22votes%22%3A+%22%22%2C+%22thumb%22%3A+%22{thumbnail}%22%2C+%22title%22%3A+%22{title_+}%22%2C+%22tvdb%22%3A+%22{id}%22%2C+%22mpaa%22%3A+%22%22%2C+%22writer%22%3A+%22%22%2C+%22label%22%3A+%22{title_+}%22%2C+%22poster%22%3A+%22{poster}%22%2C+%22status%22%3A+%22%22%2C+%22season%22%3A+%22{season}%22%2C+%22tvshowtitle%22%3A+%22{title_+}%22%2C+%22mediatype%22%3A+%22episode%22%2C+%22director%22%3A+%22%22%2C+%22studio%22%3A+%22%22%2C+%22genre%22%3A+%22%22%2C+%22banner%22%3A+%22{thumbnail}%22%2C+%22fanart%22%3A+%22{fanart}%22%2C+%22episode%22%3A+%22{episode}%22%2C+%22premiered%22%3A+%22%22%2C+%22cast%22%3A+%5B%5B%22%22%2C+%22%22%5D%5D%2C+%22trailer%22%3A+%22plugin%3A%2F%2Fplugin.video.gaia%2F%3Faction%3Dtrailer%26name%3D{clearname_+}%22%7D&t={now}" | ||
"name": "[COLOR FFA0C12C]Gaia[/COLOR]", | ||
"plugin": "plugin.video.gaia", | ||
"priority": 200, | ||
"is_resolvable": "false", | ||
"play_movie": "plugin://plugin.video.gaia/?action=scrape&media=movie&imdb={imdb}&tmdb={tmdb}&tvdb={tvdb}&trakt={trakt}&title={title_url}&year={year}&premiered={premiered}&gaia=True", | ||
"play_episode": "plugin://plugin.video.gaia/?action=scrape&media=show&imdb={imdb}&tmdb={tmdb}&tvdb={tvdb}&trakt={trakt}&title={title_url}&year={showyear}&premiered={premiered}&season={season}&episode={episode}&tvshowtitle={showname_url}&gaia=True", | ||
"search_movie": "plugin://plugin.video.gaia/?action=search&media=movie&query={clearname_url}&gaia=True", | ||
"search_episode": "plugin://plugin.video.gaia/?action=search&media=show&query={clearname_url}&gaia=True" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is the same as the one included with TMDBHelper, so it shouldn't be here.