From 1cb77876be45abaec35de02353a454d0b26c059a Mon Sep 17 00:00:00 2001 From: Martijn Brekhof Date: Sat, 29 Apr 2017 17:08:15 +0200 Subject: [PATCH] Implemented testing actionbar state (#382) * Added JSON datafiles for TV shows and music videos * Implemented instrumentations tests for MoviesActivity, MusicActivity, TVShowActivity, and AddonsActivity. * Moved RestoreSearchQueryViewPagerTest to music package as it uses the MusicActivity * Moved RestoreSearchQueryListFragmentTest to movies packages as it uses the MoviesActivity * Added scripts to get JSON data for music videos, addons, and TV shows * Added sequence diagram for BaseMediaActivity to clarify new setup * Refactored BaseMediaActivity to comply with diagram * Refactored SyncMusicVideos and SyncTVShows so we can use the same code for adding test data as we use for adding real data. * Removed unused StringBuffer and synchronize block in MockTcpServer --- .../kore/testhelpers/EspressoTestUtils.java | 116 + .../java/org/xbmc/kore/testhelpers/Utils.java | 16 +- .../xbmc/kore/tests/ui/AbstractTestClass.java | 106 + .../kore/tests/ui/BaseMediaActivityTests.java | 113 + .../tests/ui/addons/AddonsActivityTests.java | 129 + .../tests/ui/movies/MoviesActivityTests.java | 99 + .../RestoreSearchQueryListFragmentTest.java | 31 +- .../tests/ui/music/MusicActivityTests.java | 260 + .../RestoreSearchQueryViewPagerTest.java | 48 +- .../ui/tvshows/TVShowsActivityTests.java | 193 + .../kore/service/library/SyncMusicVideos.java | 8 +- .../kore/service/library/SyncTVShows.java | 140 +- .../org/xbmc/kore/ui/BaseMediaActivity.java | 15 +- .../mediaprovider/AbstractTestClass.java | 4 +- .../testUtils/assets/Addons.GetAddons.json | 1244 + .../assets/VideoLibrary.GetEpisodes.json | 50320 ++++++++++++++++ .../assets/VideoLibrary.GetMusicVideos.json | 581 + .../assets/VideoLibrary.GetSeasons.json | 465 + .../assets/VideoLibrary.GetTVShows.json | 691 + .../org/xbmc/kore/testutils/Database.java | 65 +- .../testutils/tcpserver/MockTcpServer.java | 13 +- .../tcpserver/handlers/AddonsHandler.java | 80 + .../handlers/jsonrpc/JsonResponse.java | 8 + .../jsonrpc/response/methods/Addons.java | 40 + .../org.xbmc.kore.ui.basedraweractivity.puml | 48 + tools/json/getaddons.pl | 53 + tools/json/getmusicvideos.pl | 63 + tools/json/gettvshows.pl | 181 + 28 files changed, 54966 insertions(+), 164 deletions(-) create mode 100644 app/src/androidTest/java/org/xbmc/kore/tests/ui/AbstractTestClass.java create mode 100644 app/src/androidTest/java/org/xbmc/kore/tests/ui/BaseMediaActivityTests.java create mode 100644 app/src/androidTest/java/org/xbmc/kore/tests/ui/addons/AddonsActivityTests.java create mode 100644 app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/MoviesActivityTests.java rename app/src/androidTest/java/org/xbmc/kore/tests/ui/{ => movies}/RestoreSearchQueryListFragmentTest.java (90%) create mode 100644 app/src/androidTest/java/org/xbmc/kore/tests/ui/music/MusicActivityTests.java rename app/src/androidTest/java/org/xbmc/kore/tests/ui/{ => music}/RestoreSearchQueryViewPagerTest.java (88%) create mode 100644 app/src/androidTest/java/org/xbmc/kore/tests/ui/tvshows/TVShowsActivityTests.java create mode 100644 app/src/testUtils/assets/Addons.GetAddons.json create mode 100644 app/src/testUtils/assets/VideoLibrary.GetEpisodes.json create mode 100644 app/src/testUtils/assets/VideoLibrary.GetMusicVideos.json create mode 100644 app/src/testUtils/assets/VideoLibrary.GetSeasons.json create mode 100644 app/src/testUtils/assets/VideoLibrary.GetTVShows.json create mode 100644 app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/AddonsHandler.java create mode 100644 app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/response/methods/Addons.java create mode 100644 doc/diagrams/sequence/org.xbmc.kore.ui.basedraweractivity.puml create mode 100755 tools/json/getaddons.pl create mode 100755 tools/json/getmusicvideos.pl create mode 100755 tools/json/gettvshows.pl diff --git a/app/src/androidTest/java/org/xbmc/kore/testhelpers/EspressoTestUtils.java b/app/src/androidTest/java/org/xbmc/kore/testhelpers/EspressoTestUtils.java index 26dfa42..71e3b30 100644 --- a/app/src/androidTest/java/org/xbmc/kore/testhelpers/EspressoTestUtils.java +++ b/app/src/androidTest/java/org/xbmc/kore/testhelpers/EspressoTestUtils.java @@ -21,15 +21,23 @@ import android.content.pm.ActivityInfo; import android.content.res.Configuration; import android.support.test.espresso.Espresso; import android.support.test.espresso.NoMatchingViewException; +import android.support.test.espresso.UiController; +import android.support.test.espresso.ViewAction; +import android.view.View; import android.widget.AutoCompleteTextView; +import android.widget.TextView; +import org.hamcrest.Matcher; import org.xbmc.kore.R; import static android.support.test.espresso.Espresso.onData; import static android.support.test.espresso.Espresso.onView; import static android.support.test.espresso.Espresso.openActionBarOverflowOrOptionsMenu; +import static android.support.test.espresso.Espresso.pressBack; import static android.support.test.espresso.action.ViewActions.clearText; import static android.support.test.espresso.action.ViewActions.click; +import static android.support.test.espresso.action.ViewActions.swipeLeft; +import static android.support.test.espresso.action.ViewActions.swipeRight; import static android.support.test.espresso.action.ViewActions.typeText; import static android.support.test.espresso.assertion.ViewAssertions.doesNotExist; import static android.support.test.espresso.assertion.ViewAssertions.matches; @@ -37,10 +45,12 @@ import static android.support.test.espresso.matcher.ViewMatchers.isAssignableFro import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed; import static android.support.test.espresso.matcher.ViewMatchers.withContentDescription; import static android.support.test.espresso.matcher.ViewMatchers.withId; +import static android.support.test.espresso.matcher.ViewMatchers.withParent; import static android.support.test.espresso.matcher.ViewMatchers.withText; import static org.hamcrest.Matchers.allOf; import static org.hamcrest.Matchers.anything; import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.instanceOf; import static org.xbmc.kore.testhelpers.action.ViewActions.clearFocus; public class EspressoTestUtils { @@ -164,4 +174,110 @@ public class EspressoTestUtils { public static void checkSearchMenuCollapsed() { onView(isAssignableFrom(AutoCompleteTextView.class)).check(doesNotExist()); } + + /** + * Returns the current active activity. Use this when the originally started activity + * started a new activity and you need the reference to the new activity. + * @return reference to the current active activity + */ + public static Activity getActivity() { + final Activity[] activity = new Activity[1]; + onView(allOf(withId(android.R.id.content), isDisplayed())).perform(new ViewAction() { + @Override + public Matcher getConstraints() { + return isAssignableFrom(View.class); + } + + @Override + public String getDescription() { + return "getting current activity"; + } + + @Override + public void perform(UiController uiController, View view) { + if (view.getContext() instanceof Activity) { + activity[0] = ((Activity)view.getContext()); + } + } + }); + return activity[0]; + } + + /** + * Clicks the album tab in the music activity + */ + public static void clickAlbumsTab() { + onView(withId(R.id.pager_tab_strip)).perform(swipeLeft()); + onView(withText(R.string.albums)).perform(click()); + } + + /** + * Clicks the artists tab in the music activity + */ + public static void clickArtistsTab() { + onView(withId(R.id.pager_tab_strip)).perform(swipeRight()); + onView(withText(R.string.artists)).perform(click()); + } + + /** + * Clicks the genres tab in the music activity + */ + public static void clickGenresTab() { + onView(withId(R.id.pager_tab_strip)).perform(swipeLeft()); + onView(withText(R.string.genres)).perform(click()); + } + + /** + * Clicks the music videos tab in the music activity + */ + public static void clickMusicVideosTab() { + onView(withId(R.id.pager_tab_strip)).perform(swipeLeft()); + onView(withText(R.string.videos)).perform(click()); + } + + /** + * Selects an item in the list, then presses back and checks the action bar title + * @param item number (0 is first item) of the item that should be pressed + * @param listResourceId Resource identifier of the AdapterView + * @param actionbarTitle title that should be displayed in the action bar after pressing back + */ + public static void selectListItemPressBackAndCheckActionbarTitle(int item, + int listResourceId, + String actionbarTitle) { + EspressoTestUtils.clickAdapterViewItem(item, listResourceId); + pressBack(); + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(actionbarTitle))); + } + + /** + * Selects an item in the list, then rotates the device and checks the action bar title + * @param item number (0 is first item) of the item that should be pressed + * @param listResourceId Resource identifier of the AdapterView + * @param actionbarTitle title that should be displayed in the action bar after rotating + */ + public static void selectListItemRotateDeviceAndCheckActionbarTitle(int item, + int listResourceId, + String actionbarTitle, + Activity activity) { + EspressoTestUtils.clickAdapterViewItem(item, listResourceId); + EspressoTestUtils.rotateDevice(activity); + + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(actionbarTitle))); + } + + /** + * Selects an item in the list and then checks the action bar title + * @param item number (0 is first item) of the item that should be pressed + * @param listResourceId Resource identifier of the AdapterView + * @param actionbarTitle title that should be displayed in the action bar after selecting item + */ + public static void selectListItemAndCheckActionbarTitle(int item, + int listResourceId, + String actionbarTitle) { + EspressoTestUtils.clickAdapterViewItem(item, listResourceId); + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(actionbarTitle))); + } } diff --git a/app/src/androidTest/java/org/xbmc/kore/testhelpers/Utils.java b/app/src/androidTest/java/org/xbmc/kore/testhelpers/Utils.java index ad52edc..1ec9a41 100644 --- a/app/src/androidTest/java/org/xbmc/kore/testhelpers/Utils.java +++ b/app/src/androidTest/java/org/xbmc/kore/testhelpers/Utils.java @@ -22,6 +22,7 @@ import android.os.IBinder; import android.support.test.rule.ActivityTestRule; import android.support.v4.widget.DrawerLayout; import android.util.Log; +import android.view.Gravity; import org.xbmc.kore.R; import org.xbmc.kore.host.HostInfo; @@ -54,10 +55,21 @@ public class Utils { }); } - public static void initialize(ActivityTestRule activityTestRule) throws Throwable { + public static void openDrawer(final ActivityTestRule activityTestRule) throws Throwable { + activityTestRule.runOnUiThread(new Runnable() { + @Override + public void run() { + DrawerLayout drawerLayout = (DrawerLayout) activityTestRule.getActivity().findViewById(R.id.drawer_layout); + drawerLayout.openDrawer(Gravity.LEFT); + } + }); + } + + public static void initialize(ActivityTestRule activityTestRule, HostInfo info) throws Throwable { if (isInitialized) return; + hostInfo = info; context = activityTestRule.getActivity(); disableAnimations(); @@ -66,7 +78,7 @@ public class Utils { mediaProvider.setContext(context); mediaProvider.onCreate(); - hostInfo = Database.fill(context, context.getContentResolver()); + Database.fill(hostInfo, context, context.getContentResolver()); HostManager.getInstance(context).switchHost(hostInfo); Utils.closeDrawer(activityTestRule); diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/AbstractTestClass.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/AbstractTestClass.java new file mode 100644 index 0000000..aefc0ad --- /dev/null +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/AbstractTestClass.java @@ -0,0 +1,106 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.tests.ui; + +import android.content.Intent; +import android.support.test.espresso.Espresso; +import android.support.test.rule.ActivityTestRule; +import android.support.test.runner.AndroidJUnit4; +import android.support.v7.app.AppCompatActivity; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Ignore; +import org.junit.runner.RunWith; +import org.xbmc.kore.host.HostInfo; +import org.xbmc.kore.jsonrpc.HostConnection; +import org.xbmc.kore.testhelpers.LoaderIdlingResource; +import org.xbmc.kore.testhelpers.Utils; +import org.xbmc.kore.testutils.Database; +import org.xbmc.kore.testutils.tcpserver.MockTcpServer; +import org.xbmc.kore.testutils.tcpserver.handlers.AddonsHandler; +import org.xbmc.kore.testutils.tcpserver.handlers.JSONConnectionHandlerManager; + +import java.io.IOException; + +@RunWith(AndroidJUnit4.class) +@Ignore +abstract public class AbstractTestClass { + + abstract protected ActivityTestRule getActivityTestRule(); + + private LoaderIdlingResource loaderIdlingResource; + private ActivityTestRule activityTestRule; + private static MockTcpServer server; + private static JSONConnectionHandlerManager manager; + private AddonsHandler addonsHandler; + + @BeforeClass + public static void setupMockTCPServer() throws Throwable { + manager = new JSONConnectionHandlerManager(); + server = new MockTcpServer(manager); + server.start(); + } + + @Before + public void setUp() throws Throwable { + + activityTestRule = getActivityTestRule(); + + //Note: as the activity is not yet available in @BeforeClass we need + // to add the handler here + if (addonsHandler == null) { + addonsHandler = new AddonsHandler(activityTestRule.getActivity()); + manager.addHandler(addonsHandler); + } + + HostInfo hostInfo = Database.addHost(activityTestRule.getActivity(), server.getHostName(), + HostConnection.PROTOCOL_TCP, HostInfo.DEFAULT_HTTP_PORT, + server.getPort()); + + Utils.initialize(activityTestRule, hostInfo); + + loaderIdlingResource = new LoaderIdlingResource(activityTestRule.getActivity().getSupportLoaderManager()); + Espresso.registerIdlingResources(loaderIdlingResource); + + activityTestRule.launchActivity(new Intent()); + + Utils.closeDrawer(activityTestRule); + } + + @After + public void tearDown() throws Exception { + if ( loaderIdlingResource != null ) + Espresso.unregisterIdlingResources(loaderIdlingResource); + + Utils.cleanup(); + } + + @AfterClass + public static void cleanup() throws IOException { + server.shutdown(); + } + + protected T getActivity() { + if (activityTestRule != null) { + return activityTestRule.getActivity(); + } + return null; + } +} diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/BaseMediaActivityTests.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/BaseMediaActivityTests.java new file mode 100644 index 0000000..f651afa --- /dev/null +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/BaseMediaActivityTests.java @@ -0,0 +1,113 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.tests.ui; + +import android.support.test.espresso.Espresso; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Ignore; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.xbmc.kore.R; +import org.xbmc.kore.testhelpers.EspressoTestUtils; +import org.xbmc.kore.ui.BaseMediaActivity; + +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +/** + * Contains generic tests for all activities extending BaseMediaActivity + * @param + */ +@Ignore +abstract public class BaseMediaActivityTests extends AbstractTestClass { + + /** + * Test if the initial state shows the hamburger icon + */ + @Test + public void showHamburgerInInitialState() { + assertFalse(getActivity().getDrawerIndicatorIsArrow()); + } + + /** + * Test if navigation icon is changed to an arrow when selecting a list item + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Result: navigation icon should be an arrow + */ + @Test + public void showArrowWhenSelectingListItem() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + + assertTrue(((T) EspressoTestUtils.getActivity()).getDrawerIndicatorIsArrow()); + } + + /** + * Test if navigation icon is changed to an arrow when selecting a list item + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: navigation icon should be a hamburger + */ + @Test + public void showHamburgerWhenSelectingListItemAndReturn() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + Espresso.pressBack(); + + assertFalse(((T) EspressoTestUtils.getActivity()).getDrawerIndicatorIsArrow()); + } + + /** + * Test if navigation icon is restored to an arrow when selecting a list item + * and rotating the device + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Rotate device + * 3. Result: navigation icon should be an arrow + */ + @Test + public void restoreArrowOnConfigurationChange() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + EspressoTestUtils.rotateDevice(getActivity()); + + assertTrue(((T) EspressoTestUtils.getActivity()).getDrawerIndicatorIsArrow()); + } + + /** + * Test if navigation icon is restored to an hamburger when selecting a list item + * and rotating the device and returning to the list + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Rotate device + * 3. Press back + * 4. Result: navigation icon should be a hamburger + */ + @Test + public void restoreHamburgerOnConfigurationChangeOnReturn() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + EspressoTestUtils.rotateDevice(getActivity()); + Espresso.pressBack(); + + assertFalse(((T) EspressoTestUtils.getActivity()).getDrawerIndicatorIsArrow()); + + } +} diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/addons/AddonsActivityTests.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/addons/AddonsActivityTests.java new file mode 100644 index 0000000..659cd65 --- /dev/null +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/addons/AddonsActivityTests.java @@ -0,0 +1,129 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.tests.ui.addons; + +import android.support.test.rule.ActivityTestRule; +import android.widget.TextView; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.xbmc.kore.R; +import org.xbmc.kore.testhelpers.EspressoTestUtils; +import org.xbmc.kore.testhelpers.Utils; +import org.xbmc.kore.tests.ui.AbstractTestClass; +import org.xbmc.kore.tests.ui.BaseMediaActivityTests; +import org.xbmc.kore.ui.sections.video.MoviesActivity; + +import static android.support.test.espresso.Espresso.onView; +import static android.support.test.espresso.assertion.ViewAssertions.matches; +import static android.support.test.espresso.matcher.ViewMatchers.withId; +import static android.support.test.espresso.matcher.ViewMatchers.withParent; +import static android.support.test.espresso.matcher.ViewMatchers.withText; +import static org.hamcrest.Matchers.allOf; +import static org.hamcrest.Matchers.instanceOf; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.selectListItemPressBackAndCheckActionbarTitle; + +/** + * Note: we use MoviesActivity here instead of AddonsActivity. The reason is that we use @Rule + * to start the activity which is done prior to executing @Before. This results in a deadlock + * situation. + * + * Normal startup procedure would be as follows: + * + * 1. Start MockTCPServer {@link AbstractTestClass#setupMockTCPServer()} + * 2. Start activity {mActivityRule} + * 3. Espresso waits for activity to become idle before calling {@link AbstractTestClass#setUp()} + * 4. Add AddonsHandler {@link AbstractTestClass#setUp()} + * + * At step 2 the AddonsActivity displays an animated progress indicator while it waits for the + * MockTCPServer to send the list of addons. + * This is never send as the {@link org.xbmc.kore.testutils.tcpserver.handlers.AddonsHandler} is + * added in {@link super#setUp()} which is never started by Espresso as it waits for + * {@link org.xbmc.kore.ui.sections.addon.AddonsActivity} to become idle. + */ +public class AddonsActivityTests extends BaseMediaActivityTests { + + @Rule + public ActivityTestRule mActivityRule = new ActivityTestRule<>( + MoviesActivity.class); + + @Override + protected ActivityTestRule getActivityTestRule() { + return mActivityRule; + } + + @Before + @Override + public void setUp() throws Throwable { + super.setUp(); + //Start the AddonsActivity from the MoviesActivity + Utils.openDrawer(getActivityTestRule()); + EspressoTestUtils.clickAdapterViewItem(7, R.id.navigation_drawer); + } + + /** + * Test if action bar title initially displays Addons + */ + @Test + public void setActionBarTitleMain() { + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(R.string.addons))); + } + + /** + * Test if action bar title is correctly set after selecting a list item + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitle() { + EspressoTestUtils.selectListItemAndCheckActionbarTitle(0, R.id.list, + "Dumpert"); + } + + /** + * Test if action bar title is correctly restored after a configuration change + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Rotate device + * 3. Result: action bar title should show list item title + */ + @Test + public void restoreActionBarTitleOnConfigurationStateChanged() { + EspressoTestUtils.selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "Dumpert", + getActivity()); + } + + /** + * Test if action bar title is correctly restored after returning from a movie selection + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: action bar title should show main title + */ + @Test + public void restoreActionBarTitleOnReturningFromMovie() { + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, + getActivity().getString(R.string.addons)); + } +} diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/MoviesActivityTests.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/MoviesActivityTests.java new file mode 100644 index 0000000..4c8a382 --- /dev/null +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/MoviesActivityTests.java @@ -0,0 +1,99 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.tests.ui.movies; + +import android.support.test.rule.ActivityTestRule; +import android.widget.TextView; + +import org.junit.Rule; +import org.junit.Test; +import org.xbmc.kore.R; +import org.xbmc.kore.testhelpers.EspressoTestUtils; +import org.xbmc.kore.tests.ui.BaseMediaActivityTests; +import org.xbmc.kore.ui.sections.video.MoviesActivity; + +import static android.support.test.espresso.Espresso.onView; +import static android.support.test.espresso.assertion.ViewAssertions.matches; +import static android.support.test.espresso.matcher.ViewMatchers.withId; +import static android.support.test.espresso.matcher.ViewMatchers.withParent; +import static android.support.test.espresso.matcher.ViewMatchers.withText; +import static org.hamcrest.Matchers.allOf; +import static org.hamcrest.Matchers.instanceOf; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.selectListItemPressBackAndCheckActionbarTitle; + +public class MoviesActivityTests extends BaseMediaActivityTests { + + @Rule + public ActivityTestRule mActivityRule = new ActivityTestRule<>( + MoviesActivity.class); + + @Override + protected ActivityTestRule getActivityTestRule() { + return mActivityRule; + } + + /** + * Test if action bar title initially displays Movies + */ + @Test + public void setActionBarTitleMain() { + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(R.string.movies))); + } + + /** + * Test if action bar title is correctly set after selecting a list item + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitle() { + EspressoTestUtils.selectListItemAndCheckActionbarTitle(0, R.id.list, + "#Rookie93 Marc Marquez: Beyond the Smile"); + } + + /** + * Test if action bar title is correctly restored after a configuration change + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Rotate device + * 3. Result: action bar title should show list item title + */ + @Test + public void restoreActionBarTitleOnConfigurationStateChanged() { + EspressoTestUtils.selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "#Rookie93 Marc Marquez: Beyond the Smile", + mActivityRule.getActivity()); + } + + /** + * Test if action bar title is correctly restored after returning from a movie selection + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: action bar title should show main title + */ + @Test + public void restoreActionBarTitleOnReturningFromMovie() { + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, + mActivityRule.getActivity().getString(R.string.movies)); + } +} diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/RestoreSearchQueryListFragmentTest.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/RestoreSearchQueryListFragmentTest.java similarity index 90% rename from app/src/androidTest/java/org/xbmc/kore/tests/ui/RestoreSearchQueryListFragmentTest.java rename to app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/RestoreSearchQueryListFragmentTest.java index 5b9ac48..58888ab 100644 --- a/app/src/androidTest/java/org/xbmc/kore/tests/ui/RestoreSearchQueryListFragmentTest.java +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/movies/RestoreSearchQueryListFragmentTest.java @@ -14,55 +14,36 @@ * limitations under the License. */ -package org.xbmc.kore.tests.ui; +package org.xbmc.kore.tests.ui.movies; import android.support.test.espresso.Espresso; import android.support.test.rule.ActivityTestRule; import android.support.test.runner.AndroidJUnit4; import android.test.suitebuilder.annotation.LargeTest; -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import org.xbmc.kore.R; import org.xbmc.kore.testhelpers.EspressoTestUtils; -import org.xbmc.kore.testhelpers.LoaderIdlingResource; -import org.xbmc.kore.testhelpers.Utils; +import org.xbmc.kore.tests.ui.AbstractTestClass; import org.xbmc.kore.ui.sections.video.MoviesActivity; @RunWith(AndroidJUnit4.class) @LargeTest -public class RestoreSearchQueryListFragmentTest { +public class RestoreSearchQueryListFragmentTest extends AbstractTestClass { private final String SEARCH_QUERY = "Room"; private final int SEARCH_QUERY_LIST_SIZE = 2; private final int COMPLETE_LIST_SIZE = 300; - private LoaderIdlingResource loaderIdlingResource; - @Rule public ActivityTestRule mActivityRule = new ActivityTestRule<>( MoviesActivity.class); - @Before - public void setUp() throws Throwable { - Utils.initialize(mActivityRule); - loaderIdlingResource = new LoaderIdlingResource(mActivityRule.getActivity().getSupportLoaderManager()); - Espresso.registerIdlingResources(loaderIdlingResource); - Utils.closeDrawer(mActivityRule); - } - - @After - public void tearDown() throws Exception { - Espresso.unregisterIdlingResources(loaderIdlingResource); - } - - @AfterClass - public static void cleanup() { - Utils.cleanup(); + @Override + protected ActivityTestRule getActivityTestRule() { + return mActivityRule; } /** diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/music/MusicActivityTests.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/music/MusicActivityTests.java new file mode 100644 index 0000000..4f245cd --- /dev/null +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/music/MusicActivityTests.java @@ -0,0 +1,260 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.tests.ui.music; + +import android.support.test.rule.ActivityTestRule; +import android.widget.TextView; + +import org.junit.Rule; +import org.junit.Test; +import org.xbmc.kore.R; +import org.xbmc.kore.testhelpers.EspressoTestUtils; +import org.xbmc.kore.tests.ui.BaseMediaActivityTests; +import org.xbmc.kore.ui.sections.audio.MusicActivity; + +import static android.support.test.espresso.Espresso.onView; +import static android.support.test.espresso.assertion.ViewAssertions.matches; +import static android.support.test.espresso.matcher.ViewMatchers.withId; +import static android.support.test.espresso.matcher.ViewMatchers.withParent; +import static android.support.test.espresso.matcher.ViewMatchers.withText; +import static org.hamcrest.Matchers.allOf; +import static org.hamcrest.Matchers.instanceOf; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.clickAlbumsTab; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.clickGenresTab; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.clickMusicVideosTab; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.selectListItemAndCheckActionbarTitle; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.selectListItemPressBackAndCheckActionbarTitle; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.selectListItemRotateDeviceAndCheckActionbarTitle; + +public class MusicActivityTests extends BaseMediaActivityTests { + + @Rule + public ActivityTestRule musicActivityActivityTestRule = + new ActivityTestRule<>(MusicActivity.class); + + @Override + protected ActivityTestRule getActivityTestRule() { + return musicActivityActivityTestRule; + } + + /** + * Test if action bar title initially displays Music + */ + @Test + public void setActionBarTitleMain() { + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(R.string.music))); + } + + /** + * Test if action bar title is correctly set after selecting an artist + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitleArtist() { + selectListItemAndCheckActionbarTitle(0, R.id.list, "ABC Orch"); + } + + /** + * Test if action bar title is correctly set after selecting an album + * + * UI interaction flow tested: + * 1. Click on albums tab + * 2. Click on list item + * 3. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitleAlbum() { + clickAlbumsTab(); + selectListItemAndCheckActionbarTitle(0, R.id.list, "1958 - The Fabulous Johnny Cash"); + } + + /** + * Test if action bar title is correctly set after selecting a genre + * + * UI interaction flow tested: + * 1. Click on genres tab + * 2. Click on list item + * 3. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitleGenre() { + clickGenresTab(); + selectListItemAndCheckActionbarTitle(0, R.id.list, "Ambient"); + } + + /** + * Test if action bar title is correctly set after selecting a video + * + * UI interaction flow tested: + * 1. Click on videos tab + * 2. Click on list item + * 3. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitleVideo() { + clickMusicVideosTab(); + selectListItemAndCheckActionbarTitle(0, R.id.list, "(You Drive Me) Crazy"); + } + + /** + * Test if action bar title is correctly restored after a configuration change when artist + * is selected + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Rotate device + * 3. Result: action bar title should show list item title + */ + @Test + public void restoreActionBarTitleArtistOnConfigurationStateChanged() { + selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "ABC Orch", getActivity()); + } + + /** + * Test if action bar title is correctly restored after a configuration change when album + * is selected + * + * UI interaction flow tested: + * 1. Select albums tab + * 2. Click on list item + * 3. Rotate device + * 4. Result: action bar title should show list item title + */ + @Test + public void restoreActionBarTitleAlbumOnConfigurationStateChanged() { + clickAlbumsTab(); + selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "1958 - The Fabulous Johnny Cash", + getActivity()); + } + + /** + * Test if action bar title is correctly restored after a configuration change when genre + * is selected + * + * UI interaction flow tested: + * 1. Select genres tab + * 2. Click on list item + * 3. Rotate device + * 4. Result: action bar title should show list item title + */ + @Test + public void restoreActionBarTitleGenreOnConfigurationStateChanged() { + clickGenresTab(); + selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "Ambient", getActivity()); + } + + /** + * Test if action bar title is correctly restored after a configuration change when music video + * is selected + * + * UI interaction flow tested: + * 1. Select music videos tab + * 2. Click on list item + * 3. Rotate device + * 4. Result: action bar title should show list item title + */ + @Test + public void restoreActionBarTitleMusicVideoOnConfigurationStateChanged() { + clickMusicVideosTab(); + selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "(You Drive Me) Crazy", + getActivity()); + } + + /** + * Test if action bar title is correctly restored after returning from artist selection + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: action bar title should show main title + */ + @Test + public void restoreActionBarTitleOnReturningFromArtist() { + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, + getActivity().getString(R.string.music)); + } + + /** + * Test if action bar title is correctly restored after returning from an album under + * artist + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Select albums tab + * 3. Press back + * 4. Result: action bar title should show artist title + */ + @Test + public void restoreActionBarTitleOnArtistOnReturningFromAlbum() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + clickAlbumsTab(); + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, "ABC Orch"); + } + + /** + * Test if action bar title is correctly restored after returning from music video selection + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: action bar title should show main title + */ + @Test + public void restoreActionBarTitleOnReturningFromMusicVideo() { + clickMusicVideosTab(); + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, + getActivity().getString(R.string.music)); + } + + /** + * Test if action bar title is correctly restored after returning from genre selection + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: action bar title should show main title + */ + @Test + public void restoreActionBarTitleOnReturningFromGenre() { + clickGenresTab(); + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, + getActivity().getString(R.string.music)); + } + + /** + * Test if action bar title is correctly restored after returning from album selection + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Press back + * 3. Result: action bar title should show main title + */ + @Test + public void restoreActionBarTitleOnReturningFromAlbum() { + clickAlbumsTab(); + selectListItemPressBackAndCheckActionbarTitle(0, R.id.list, + getActivity().getString(R.string.music)); + } +} diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/RestoreSearchQueryViewPagerTest.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/music/RestoreSearchQueryViewPagerTest.java similarity index 88% rename from app/src/androidTest/java/org/xbmc/kore/tests/ui/RestoreSearchQueryViewPagerTest.java rename to app/src/androidTest/java/org/xbmc/kore/tests/ui/music/RestoreSearchQueryViewPagerTest.java index 0baea49..203b1d0 100644 --- a/app/src/androidTest/java/org/xbmc/kore/tests/ui/RestoreSearchQueryViewPagerTest.java +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/music/RestoreSearchQueryViewPagerTest.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.xbmc.kore.tests.ui; +package org.xbmc.kore.tests.ui.music; import android.app.Activity; import android.support.test.espresso.Espresso; @@ -22,28 +22,21 @@ import android.support.test.rule.ActivityTestRule; import android.support.test.runner.AndroidJUnit4; import android.test.suitebuilder.annotation.LargeTest; -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import org.xbmc.kore.R; import org.xbmc.kore.testhelpers.EspressoTestUtils; import org.xbmc.kore.testhelpers.LoaderIdlingResource; -import org.xbmc.kore.testhelpers.Utils; +import org.xbmc.kore.tests.ui.AbstractTestClass; import org.xbmc.kore.ui.sections.audio.MusicActivity; -import static android.support.test.espresso.Espresso.onView; -import static android.support.test.espresso.action.ViewActions.click; -import static android.support.test.espresso.action.ViewActions.swipeLeft; -import static android.support.test.espresso.action.ViewActions.swipeRight; -import static android.support.test.espresso.matcher.ViewMatchers.withId; -import static android.support.test.espresso.matcher.ViewMatchers.withText; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.clickAlbumsTab; +import static org.xbmc.kore.testhelpers.EspressoTestUtils.clickArtistsTab; @RunWith(AndroidJUnit4.class) @LargeTest -public class RestoreSearchQueryViewPagerTest { +public class RestoreSearchQueryViewPagerTest extends AbstractTestClass { private final String ARTIST_SEARCH_QUERY = "Ben"; private final int ARTIST_SEARCH_QUERY_LIST_SIZE = 2; @@ -58,22 +51,9 @@ public class RestoreSearchQueryViewPagerTest { public ActivityTestRule mActivityRule = new ActivityTestRule<>( MusicActivity.class); - @Before - public void setUp() throws Throwable { - Utils.initialize(mActivityRule); - loaderIdlingResource = new LoaderIdlingResource(mActivityRule.getActivity().getSupportLoaderManager()); - Espresso.registerIdlingResources(loaderIdlingResource); - Utils.closeDrawer(mActivityRule); - } - - @After - public void tearDown() throws Exception { - Espresso.unregisterIdlingResources(loaderIdlingResource); - } - - @AfterClass - public static void cleanup() { - Utils.cleanup(); + @Override + protected ActivityTestRule getActivityTestRule() { + return mActivityRule; } /** @@ -223,7 +203,7 @@ public class RestoreSearchQueryViewPagerTest { * UI interaction flow tested: * 1. Enter search query * 2. Switch to Albums tab - * 3. Rotated device + * 3. Rotate device * 4. Switch to Artists tab * 5. Result: search query entered at 1. should show in search field and list should match search query */ @@ -325,14 +305,4 @@ public class RestoreSearchQueryViewPagerTest { EspressoTestUtils.checkTextInSearchQuery(ALBUMS_SEARCH_QUERY); EspressoTestUtils.checkListMatchesSearchQuery(ALBUMS_SEARCH_QUERY, ALBUM_SEARCH_QUERY_LIST_SIZE, R.id.list); } - - private void clickAlbumsTab() { - onView(withId(R.id.pager_tab_strip)).perform(swipeLeft()); - onView(withText(R.string.albums)).perform(click()); - } - - private void clickArtistsTab() { - onView(withId(R.id.pager_tab_strip)).perform(swipeRight()); - onView(withText(R.string.artists)).perform(click()); - } } diff --git a/app/src/androidTest/java/org/xbmc/kore/tests/ui/tvshows/TVShowsActivityTests.java b/app/src/androidTest/java/org/xbmc/kore/tests/ui/tvshows/TVShowsActivityTests.java new file mode 100644 index 0000000..312eda1 --- /dev/null +++ b/app/src/androidTest/java/org/xbmc/kore/tests/ui/tvshows/TVShowsActivityTests.java @@ -0,0 +1,193 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.tests.ui.tvshows; + +import android.support.test.rule.ActivityTestRule; +import android.widget.TextView; + +import org.junit.Rule; +import org.junit.Test; +import org.xbmc.kore.R; +import org.xbmc.kore.testhelpers.EspressoTestUtils; +import org.xbmc.kore.tests.ui.BaseMediaActivityTests; +import org.xbmc.kore.ui.sections.video.TVShowsActivity; + +import static android.support.test.espresso.Espresso.onView; +import static android.support.test.espresso.action.ViewActions.click; +import static android.support.test.espresso.action.ViewActions.scrollTo; +import static android.support.test.espresso.assertion.ViewAssertions.matches; +import static android.support.test.espresso.matcher.ViewMatchers.withId; +import static android.support.test.espresso.matcher.ViewMatchers.withParent; +import static android.support.test.espresso.matcher.ViewMatchers.withText; +import static org.hamcrest.Matchers.allOf; +import static org.hamcrest.Matchers.instanceOf; + +public class TVShowsActivityTests extends BaseMediaActivityTests { + + @Rule + public ActivityTestRule mActivityRule = new ActivityTestRule<>( + TVShowsActivity.class); + + @Override + protected ActivityTestRule getActivityTestRule() { + return mActivityRule; + } + + /** + * Test if action bar title initially displays TV Shows + */ + @Test + public void setActionBarTitleMain() { + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText(R.string.tv_shows))); + } + + /** + * Test if action bar title is correctly set after selecting a list item + * + * UI interaction flow tested: + * 1. Click on list item + * 2. Result: action bar title should show list item title + */ + @Test + public void setActionBarTitle() { + EspressoTestUtils.selectListItemAndCheckActionbarTitle(0, R.id.list, "11.22.63"); + } + + /** + * Test if action bar title is correctly set after selecting a season + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Click on next episode item + * 3. Result: action bar title should show next episode title + */ + @Test + public void setActionBarTitleOnNextEpisode() { + EspressoTestUtils.clickAdapterViewItem(1, R.id.list); + onView( withId(R.id.next_episode_list)).perform( scrollTo(), click()); + + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText("3"))); + } + + /** + * Test if action bar title is correctly set after selecting a season + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Click on season item + * 3. Result: action bar title should show season title + */ + @Test + public void setActionBarTitleOnSeasonList() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + onView( withId(R.id.seasons_list)).perform( scrollTo(), click()); + + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText("Season 01"))); + } + + /** + * Test if action bar title is correctly set after selecting an episode from the season list + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Click on season item + * 3. Click on an episode + * 4. Result: action bar title should show episode title + */ + @Test + public void setActionBarTitleOnSeasonListEpisode() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + onView( withId(R.id.seasons_list)).perform( scrollTo(), click()); + EspressoTestUtils.selectListItemAndCheckActionbarTitle(0, R.id.list, "11.22.63"); + } + + /** + * Test if action bar title is correctly restored after a configuration change + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Rotate device + * 3. Result: action bar title should show TV show item title + */ + @Test + public void restoreActionBarTitleOnConfigurationStateChanged() { + EspressoTestUtils.selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "11.22.63", + mActivityRule.getActivity()); + } + + /** + * Test if action bar title is correctly restored on season list after a configuration change + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Click on season item + * 3. Rotate device + * 4. Result: action bar title should show season title + */ + @Test + public void restoreActionBarTitleSeasonListOnConfigurationStateChanged() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + onView( withId(R.id.seasons_list)).perform( scrollTo(), click()); + EspressoTestUtils.rotateDevice(mActivityRule.getActivity()); + + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText("Season 01"))); + } + + /** + * Test if action bar title is correctly restored on episode item title after a configuration change + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Click on season item + * 3. Click on episode item + * 4. Rotate device + * 5. Result: action bar title should TV show title + */ + @Test + public void restoreActionBarTitleSeasonListEpisodeOnConfigurationStateChanged() { + EspressoTestUtils.clickAdapterViewItem(0, R.id.list); + onView( withId(R.id.seasons_list)).perform( scrollTo(), click()); + EspressoTestUtils.selectListItemRotateDeviceAndCheckActionbarTitle(0, R.id.list, + "11.22.63", + mActivityRule.getActivity()); + } + + /** + * Test if action bar title is correctly restored on next episode item title after a configuration change + * + * UI interaction flow tested: + * 1. Click on TV Show item + * 2. Click on next episode item + * 3. Rotate device + * 4. Result: action bar title should show season title + */ + @Test + public void restoreActionBarTitleNextEpisodeOnConfigurationStateChanged() { + EspressoTestUtils.clickAdapterViewItem(1, R.id.list); + onView( withId(R.id.next_episode_list)).perform( scrollTo() ); + onView( withText("You'll See the Sparkle")).perform( click() ); + EspressoTestUtils.rotateDevice(mActivityRule.getActivity()); + + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.default_toolbar)))) + .check(matches(withText("3"))); + } +} diff --git a/app/src/main/java/org/xbmc/kore/service/library/SyncMusicVideos.java b/app/src/main/java/org/xbmc/kore/service/library/SyncMusicVideos.java index 10ce298..be6db39 100644 --- a/app/src/main/java/org/xbmc/kore/service/library/SyncMusicVideos.java +++ b/app/src/main/java/org/xbmc/kore/service/library/SyncMusicVideos.java @@ -86,7 +86,8 @@ public class SyncMusicVideos extends SyncItem { @Override public void onSuccess(List result) { deleteMusicVideos(contentResolver, hostId); - insertMusicVideos(orchestrator, contentResolver, result); + insertMusicVideos(result, contentResolver); + orchestrator.syncItemFinished(); } @Override @@ -104,9 +105,7 @@ public class SyncMusicVideos extends SyncItem { where, new String[]{String.valueOf(hostId)}); } - private void insertMusicVideos(final SyncOrchestrator orchestrator, - final ContentResolver contentResolver, - final List musicVideos) { + public void insertMusicVideos(List musicVideos, ContentResolver contentResolver) { ContentValues musicVideosValuesBatch[] = new ContentValues[musicVideos.size()]; // Iterate on each music video @@ -117,6 +116,5 @@ public class SyncMusicVideos extends SyncItem { // Insert the movies contentResolver.bulkInsert(MediaContract.MusicVideos.CONTENT_URI, musicVideosValuesBatch); - orchestrator.syncItemFinished(); } } diff --git a/app/src/main/java/org/xbmc/kore/service/library/SyncTVShows.java b/app/src/main/java/org/xbmc/kore/service/library/SyncTVShows.java index e3701c9..e848470 100644 --- a/app/src/main/java/org/xbmc/kore/service/library/SyncTVShows.java +++ b/app/src/main/java/org/xbmc/kore/service/library/SyncTVShows.java @@ -115,8 +115,9 @@ public class SyncTVShows extends SyncItem { deleteTVShows(contentResolver, hostId, tvshowId); List tvShows = new ArrayList<>(1); tvShows.add(result); - insertTVShowsAndGetDetails(orchestrator, hostConnection, callbackHandler, - contentResolver, tvShows); + insertTVShows(tvShows, contentResolver); + chainSyncSeasons(orchestrator, hostConnection, callbackHandler, + contentResolver, tvShows, 0); // insertTVShows calls syncItemFinished } @@ -157,8 +158,10 @@ public class SyncTVShows extends SyncItem { // Ok, we have all the shows, insert them LogUtils.LOGD(TAG, "syncAllTVShows: Got all tv shows. Total: " + allResults.size()); deleteTVShows(contentResolver, hostId, -1); - insertTVShowsAndGetDetails(orchestrator, hostConnection, callbackHandler, - contentResolver, allResults); + insertTVShows(allResults, contentResolver); + + chainSyncSeasons(orchestrator, hostConnection, callbackHandler, + contentResolver, allResults, 0); } } @@ -197,42 +200,6 @@ public class SyncTVShows extends SyncItem { } } - private void insertTVShowsAndGetDetails(final SyncOrchestrator orchestrator, - final HostConnection hostConnection, - final Handler callbackHandler, - final ContentResolver contentResolver, - List tvShows) { - ContentValues tvshowsValuesBatch[] = new ContentValues[tvShows.size()]; - int castCount = 0; - - // Iterate on each show - for (int i = 0; i < tvShows.size(); i++) { - VideoType.DetailsTVShow tvshow = tvShows.get(i); - tvshowsValuesBatch[i] = SyncUtils.contentValuesFromTVShow(hostId, tvshow); - castCount += tvshow.cast.size(); - } - // Insert the tvshows - contentResolver.bulkInsert(MediaContract.TVShows.CONTENT_URI, tvshowsValuesBatch); - LogUtils.LOGD(TAG, "Inserted " + tvShows.size() + " tv shows."); - - ContentValues tvshowsCastValuesBatch[] = new ContentValues[castCount]; - int count = 0; - // Iterate on each show/cast - for (VideoType.DetailsTVShow tvshow : tvShows) { - for (VideoType.Cast cast : tvshow.cast) { - tvshowsCastValuesBatch[count] = SyncUtils.contentValuesFromCast(hostId, cast); - tvshowsCastValuesBatch[count].put(MediaContract.TVShowCastColumns.TVSHOWID, tvshow.tvshowid); - count++; - } - } - // Insert the cast list for this movie - contentResolver.bulkInsert(MediaContract.TVShowCast.CONTENT_URI, tvshowsCastValuesBatch); - - // Start the sequential syncing of seasons - chainSyncSeasons(orchestrator, hostConnection, callbackHandler, - contentResolver, tvShows, 0); - } - private final static String seasonsProperties[] = { VideoType.FieldsSeason.SEASON, VideoType.FieldsSeason.SHOWTITLE, //VideoType.FieldsSeason.PLAYCOUNT, @@ -270,27 +237,8 @@ public class SyncTVShows extends SyncItem { action.execute(hostConnection, new ApiCallback>() { @Override public void onSuccess(List result) { - ContentValues seasonsValuesBatch[] = new ContentValues[result.size()]; - int totalWatchedEpisodes = 0; - for (int i = 0; i < result.size(); i++) { - VideoType.DetailsSeason season = result.get(i); - seasonsValuesBatch[i] = SyncUtils.contentValuesFromSeason(hostId, season); - totalWatchedEpisodes += season.watchedepisodes; - } - // Insert the seasons - contentResolver.bulkInsert(MediaContract.Seasons.CONTENT_URI, seasonsValuesBatch); - - if (getSyncType().equals(LibrarySyncService.SYNC_SINGLE_TVSHOW)) { - // HACK: Update watched episodes count for the tvshow with the sum - // of watched episodes from seasons, given that the value that we - // got from XBMC from the call to GetTVShowDetails is wrong (note - // that the value returned from GetTVShows is correct). - Uri uri = MediaContract.TVShows.buildTVShowUri(hostId, tvShow.tvshowid); - ContentValues tvshowUpdate = new ContentValues(1); - tvshowUpdate.put(MediaContract.TVShowsColumns.WATCHEDEPISODES, totalWatchedEpisodes); - contentResolver.update(uri, tvshowUpdate, null, null); - } + insertSeason(tvShow.tvshowid, result, contentResolver); // Sync the next tv show chainSyncSeasons(orchestrator, hostConnection, callbackHandler, @@ -358,13 +306,8 @@ public class SyncTVShows extends SyncItem { action.execute(hostConnection, new ApiCallback>() { @Override public void onSuccess(List result) { - ContentValues episodesValuesBatch[] = new ContentValues[result.size()]; - for (int i = 0; i < result.size(); i++) { - VideoType.DetailsEpisode episode = result.get(i); - episodesValuesBatch[i] = SyncUtils.contentValuesFromEpisode(hostId, episode); - } - // Insert the episodes - contentResolver.bulkInsert(MediaContract.Episodes.CONTENT_URI, episodesValuesBatch); + + insertEpisodes(result, contentResolver); chainSyncEpisodes(orchestrator, hostConnection, callbackHandler, contentResolver, tvShows, position + 1); @@ -382,4 +325,67 @@ public class SyncTVShows extends SyncItem { orchestrator.syncItemFinished(); } } + + public void insertTVShows(List tvShows, ContentResolver contentResolver) { + ContentValues tvshowsValuesBatch[] = new ContentValues[tvShows.size()]; + int castCount = 0; + + // Iterate on each show + for (int i = 0; i < tvShows.size(); i++) { + VideoType.DetailsTVShow tvshow = tvShows.get(i); + tvshowsValuesBatch[i] = SyncUtils.contentValuesFromTVShow(hostId, tvshow); + castCount += tvshow.cast.size(); + } + // Insert the tvshows + contentResolver.bulkInsert(MediaContract.TVShows.CONTENT_URI, tvshowsValuesBatch); + LogUtils.LOGD(TAG, "Inserted " + tvShows.size() + " tv shows."); + + ContentValues tvshowsCastValuesBatch[] = new ContentValues[castCount]; + int count = 0; + // Iterate on each show/cast + for (VideoType.DetailsTVShow tvshow : tvShows) { + for (VideoType.Cast cast : tvshow.cast) { + tvshowsCastValuesBatch[count] = SyncUtils.contentValuesFromCast(hostId, cast); + tvshowsCastValuesBatch[count].put(MediaContract.TVShowCastColumns.TVSHOWID, tvshow.tvshowid); + count++; + } + } + // Insert the cast list for this movie + contentResolver.bulkInsert(MediaContract.TVShowCast.CONTENT_URI, tvshowsCastValuesBatch); + + } + + public void insertSeason(int tvshowId, List result, ContentResolver contentResolver) { + ContentValues seasonsValuesBatch[] = new ContentValues[result.size()]; + int totalWatchedEpisodes = 0; + for (int i = 0; i < result.size(); i++) { + VideoType.DetailsSeason season = result.get(i); + seasonsValuesBatch[i] = SyncUtils.contentValuesFromSeason(hostId, season); + + totalWatchedEpisodes += season.watchedepisodes; + } + // Insert the seasons + contentResolver.bulkInsert(MediaContract.Seasons.CONTENT_URI, seasonsValuesBatch); + + if (getSyncType().equals(LibrarySyncService.SYNC_SINGLE_TVSHOW)) { + // HACK: Update watched episodes count for the tvshow with the sum + // of watched episodes from seasons, given that the value that we + // got from XBMC from the call to GetTVShowDetails is wrong (note + // that the value returned from GetTVShows is correct). + Uri uri = MediaContract.TVShows.buildTVShowUri(hostId, tvshowId); + ContentValues tvshowUpdate = new ContentValues(1); + tvshowUpdate.put(MediaContract.TVShowsColumns.WATCHEDEPISODES, totalWatchedEpisodes); + contentResolver.update(uri, tvshowUpdate, null, null); + } + } + + public void insertEpisodes(List episodes, ContentResolver contentResolver) { + ContentValues episodesValuesBatch[] = new ContentValues[episodes.size()]; + for (int i = 0; i < episodes.size(); i++) { + VideoType.DetailsEpisode episode = episodes.get(i); + episodesValuesBatch[i] = SyncUtils.contentValuesFromEpisode(hostId, episode); + } + // Insert the episodes + contentResolver.bulkInsert(MediaContract.Episodes.CONTENT_URI, episodesValuesBatch); + } } diff --git a/app/src/main/java/org/xbmc/kore/ui/BaseMediaActivity.java b/app/src/main/java/org/xbmc/kore/ui/BaseMediaActivity.java index d8cad9b..290423b 100644 --- a/app/src/main/java/org/xbmc/kore/ui/BaseMediaActivity.java +++ b/app/src/main/java/org/xbmc/kore/ui/BaseMediaActivity.java @@ -79,14 +79,17 @@ public abstract class BaseMediaActivity extends AppCompatActivity { ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { - actionBar.setDisplayHomeAsUpEnabled(true); - + String actionBarTitle; + boolean naviconIsArrow = false; if (savedInstanceState != null) { - updateActionBar(savedInstanceState.getString(ACTIONBAR_TITLE), - savedInstanceState.getBoolean(NAVICON_ISARROW)); + actionBarTitle = savedInstanceState.getString(ACTIONBAR_TITLE); + naviconIsArrow = savedInstanceState.getBoolean(NAVICON_ISARROW); } else { - updateActionBar(getActionBarTitle(), false); + actionBarTitle = getActionBarTitle(); } + + actionBar.setDisplayHomeAsUpEnabled(true); + updateActionBar(actionBarTitle, naviconIsArrow); } String fragmentTitle = getActionBarTitle(); @@ -183,7 +186,5 @@ public abstract class BaseMediaActivity extends AppCompatActivity { fragTrans.replace(R.id.fragment_container, fragment, getActionBarTitle()) .addToBackStack(null) .commit(); - - dataHolder.getBundle().putBoolean(NAVICON_ISARROW, true); } } diff --git a/app/src/test/java/org/xbmc/kore/provider/mediaprovider/AbstractTestClass.java b/app/src/test/java/org/xbmc/kore/provider/mediaprovider/AbstractTestClass.java index 10e45a5..acd5206 100644 --- a/app/src/test/java/org/xbmc/kore/provider/mediaprovider/AbstractTestClass.java +++ b/app/src/test/java/org/xbmc/kore/provider/mediaprovider/AbstractTestClass.java @@ -48,6 +48,8 @@ public class AbstractTestClass { ShadowContentResolver.registerProvider("org.xbmc.kore.provider", provider); provider.onCreate(); - hostInfo = Database.fill(RuntimeEnvironment.application, contentResolver); + hostInfo = Database.addHost(RuntimeEnvironment.application); + + Database.fill(hostInfo, RuntimeEnvironment.application, contentResolver); } } diff --git a/app/src/testUtils/assets/Addons.GetAddons.json b/app/src/testUtils/assets/Addons.GetAddons.json new file mode 100644 index 0000000..9b05415 --- /dev/null +++ b/app/src/testUtils/assets/Addons.GetAddons.json @@ -0,0 +1,1244 @@ +{ + "jsonrpc" : "2.0", + "id" : "libAddons", + "result" : { + "addons" : [ + { + "path" : "/home/martijn/.kodi/addons/metadata.common.fanart.tv", + "enabled" : true, + "extrainfo" : [], + "description" : "Download backdrops from www.fanart.tv.com", + "rating" : -1, + "disclaimer" : "", + "author" : "Team Kodi", + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.metadata", + "version" : "2.1.0" + } + ], + "broken" : false, + "type" : "xbmc.metadata.scraper.library", + "installed" : true, + "fanart" : "", + "version" : "3.1.4", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.fanart.tv%2ficon.png/", + "summary" : "fanart.tv Scraper Library", + "name" : "fanart.tv Scraper Library", + "addonid" : "metadata.common.fanart.tv" + }, + { + "fanart" : "", + "version" : "1.1.8", + "type" : "kodi.resource.images", + "broken" : false, + "installed" : true, + "name" : "Weather Icons - Default", + "addonid" : "resource.images.weathericons.default", + "summary" : "Default Weather Icons", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fresource.images.weathericons.default%2ficon.png/", + "description" : "Default set of Weather Icons shipped with Kodi", + "rating" : -1, + "extrainfo" : [], + "enabled" : true, + "path" : "/usr/share/kodi/addons/resource.images.weathericons.default", + "dependencies" : [ + { + "version" : "1.0.0", + "optional" : false, + "addonid" : "kodi.resource" + } + ], + "author" : "Team Kodi", + "disclaimer" : "" + }, + { + "author" : "Skipmode A1, Sparkline, Martijn", + "dependencies" : [ + { + "version" : "5.1.7", + "optional" : false, + "addonid" : "plugin.video.youtube" + }, + { + "version" : "3.0.8", + "addonid" : "script.module.beautifulsoup", + "optional" : false + }, + { + "optional" : false, + "addonid" : "script.module.requests", + "version" : "2.4.3" + }, + { + "addonid" : "xbmc.python", + "optional" : false, + "version" : "2.14.0" + } + ], + "disclaimer" : "For bugs, requests or general questions visit the Dumpert.nl thread on the XBMC forum.", + "rating" : -1, + "extrainfo" : [ + { + "value" : "nl", + "key" : "language" + }, + { + "value" : "video", + "key" : "provides" + } + ], + "description" : "Watch funny videos from Dumpert.nl (dutch)", + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/plugin.video.dumpert", + "name" : "Dumpert", + "addonid" : "plugin.video.dumpert", + "summary" : "Watch funny videos from Dumpert.nl (dutch)", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.dumpert%2ficon.png/", + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.dumpert%2ffanart.jpg/", + "version" : "1.1.4", + "type" : "xbmc.python.pluginsource", + "broken" : false, + "installed" : true + }, + { + "name" : "Kodi Add-on repository", + "addonid" : "repository.xbmc.org", + "summary" : "Install Add-ons from Kodi.tv", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2frepository.xbmc.org%2ficon.png/", + "fanart" : "", + "version" : "2.5.9", + "type" : "xbmc.addon.repository", + "broken" : false, + "installed" : true, + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.addon", + "version" : "12.0.0" + } + ], + "author" : "Team Kodi", + "disclaimer" : "Team Kodi did not make all the add-ons on this repository and are not responsible for their content", + "extrainfo" : [], + "rating" : -1, + "description" : "Download and install add-ons from the Official Kodi.tv add-on repository.[CR] By using the official Repository you will be able to take advantage of our extensive file mirror service to help get you faster downloads from a region close to you.[CR] All add-ons on this repository have under gone basic testing, if you find a broken or not working add-on please report it to Team Kodi so we can take any action needed.", + "enabled" : true, + "path" : "/usr/share/kodi/addons/repository.xbmc.org" + }, + { + "disclaimer" : "", + "author" : "jez500, Team Kodi", + "dependencies" : [ + { + "addonid" : "xbmc.json", + "optional" : false, + "version" : "6.0.0" + } + ], + "path" : "/usr/share/kodi/addons/webinterface.default", + "extrainfo" : [ + { + "key" : "language", + "value" : "en" + } + ], + "description" : "Browse and interact with your Music, Movies, TV Shows and more via a web browser. Stream music and videos to your browser. Edit and manage your Kodi media library.", + "rating" : -1, + "enabled" : true, + "summary" : "Default web interface", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fwebinterface.default%2ficon.png/", + "addonid" : "webinterface.default", + "name" : "Kodi web interface - Chorus2", + "installed" : true, + "type" : "xbmc.webinterface", + "broken" : false, + "version" : "2.4.4", + "fanart" : "" + }, + { + "description" : "Black is a simple screensaver that will turn your screen black.", + "rating" : -1, + "extrainfo" : [], + "enabled" : true, + "path" : "/usr/share/kodi/addons/screensaver.xbmc.builtin.black", + "dependencies" : [], + "author" : "Team Kodi", + "disclaimer" : "", + "fanart" : "", + "version" : "1.0.31", + "type" : "xbmc.ui.screensaver", + "broken" : false, + "installed" : true, + "name" : "Black", + "addonid" : "screensaver.xbmc.builtin.black", + "summary" : "Screensaver that turns your screen black", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fscreensaver.xbmc.builtin.black%2ficon.png/" + }, + { + "path" : "/home/martijn/.kodi/addons/metadata.albums.theaudiodb.com", + "extrainfo" : [], + "description" : "TheAudioDB.com is a community driven database of audio releases. It is our aim to be the most simple, easy to use and accurate source for Music metadata on the web. We also provide an API to access our repository of data so it can be used in many popular HTPC and Mobile apps to give you the best possible audio experience without the hassle.", + "rating" : -1, + "enabled" : true, + "disclaimer" : "", + "dependencies" : [ + { + "version" : "3.1.0", + "optional" : false, + "addonid" : "metadata.common.fanart.tv" + }, + { + "version" : "1.7.3", + "addonid" : "metadata.common.theaudiodb.com", + "optional" : false + }, + { + "version" : "2.1.0", + "addonid" : "xbmc.metadata", + "optional" : false + } + ], + "author" : "Olympia, Team Kodi", + "broken" : false, + "type" : "xbmc.metadata.scraper.albums", + "installed" : true, + "fanart" : "", + "version" : "1.2.0", + "summary" : "TheAudioDb Album Scraper", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.albums.theaudiodb.com%2ficon.png/", + "name" : "TheAudioDb Album Scraper", + "addonid" : "metadata.albums.theaudiodb.com" + }, + { + "addonid" : "audioencoder.xbmc.builtin.wma", + "name" : "WMA encoder", + "summary" : "WMA Audio Encoder", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2faudioencoder.xbmc.builtin.wma%2ficon.png/", + "version" : "1.0.0", + "fanart" : "", + "installed" : true, + "broken" : false, + "type" : "xbmc.audioencoder", + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.audioencoder", + "version" : "1.0.0" + } + ], + "author" : "spiff", + "disclaimer" : "", + "extrainfo" : [], + "description" : "WMA Audio Encoder", + "rating" : -1, + "enabled" : true, + "path" : "/usr/share/kodi/addons/audioencoder.xbmc.builtin.wma" + }, + { + "disclaimer" : "", + "dependencies" : [], + "author" : "Team Kodi", + "path" : "/usr/share/kodi/addons/game.controller.default", + "enabled" : true, + "description" : "The default media center controller is based on the Xbox 360 controller.", + "rating" : -1, + "extrainfo" : [], + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fgame.controller.default%2ficon.png/", + "summary" : "Default Controller", + "name" : "Default Controller", + "addonid" : "game.controller.default", + "broken" : false, + "type" : "kodi.game.controller", + "installed" : true, + "fanart" : "", + "version" : "1.0.3" + }, + { + "dependencies" : [], + "author" : "Team Kodi", + "disclaimer" : "", + "enabled" : true, + "extrainfo" : [], + "description" : "The Dim screensaver is a simple screensaver that will dim (fade out) your screen to a setable value between 20 and 100% .", + "rating" : -1, + "path" : "/usr/share/kodi/addons/screensaver.xbmc.builtin.dim", + "addonid" : "screensaver.xbmc.builtin.dim", + "name" : "Dim", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fscreensaver.xbmc.builtin.dim%2ficon.png/", + "summary" : "Screensaver that dims your screen", + "version" : "1.0.38", + "fanart" : "", + "installed" : true, + "type" : "xbmc.ui.screensaver", + "broken" : false + }, + { + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fscript.module.beautifulsoup4%2ficon.png/", + "summary" : "HTML/XML parser for quick-turnaround applications like screen-scraping", + "addonid" : "script.module.beautifulsoup4", + "name" : "BeautifulSoup4", + "installed" : true, + "type" : "xbmc.python.module", + "broken" : false, + "version" : "4.5.3", + "fanart" : "", + "disclaimer" : "", + "author" : "Leonard Richardson (leonardr@segfault.org)", + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.python", + "version" : "2.25.0" + } + ], + "path" : "/home/martijn/.kodi/addons/script.module.beautifulsoup4", + "enabled" : true, + "rating" : -1, + "description" : "Beautiful Soup parses arbitrarily invalid SGML and provides a variety of methods and Pythonic idioms for iterating and searching the parse tree.", + "extrainfo" : [] + }, + { + "author" : "Team Kodi", + "dependencies" : [ + { + "optional" : false, + "addonid" : "metadata.common.imdb.com", + "version" : "2.7.8" + }, + { + "optional" : false, + "addonid" : "metadata.common.themoviedb.org", + "version" : "2.13.1" + }, + { + "optional" : true, + "addonid" : "plugin.video.youtube", + "version" : "4.4.10" + }, + { + "addonid" : "xbmc.metadata", + "optional" : false, + "version" : "2.1.0" + } + ], + "disclaimer" : "", + "extrainfo" : [], + "description" : "themoviedb.org is a free and open movie database. It's completely user driven by people like you. TMDb is currently used by millions of people every month and with their powerful API, it is also used by many popular media centers like Kodi to retrieve Movie Metadata, Posters and Fanart to enrich the user's experience.", + "rating" : -1, + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/metadata.themoviedb.org", + "addonid" : "metadata.themoviedb.org", + "name" : "The Movie Database", + "summary" : "TMDB Movie Scraper", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.themoviedb.org%2ficon.png/", + "version" : "3.9.3", + "fanart" : "", + "installed" : true, + "broken" : false, + "type" : "xbmc.metadata.scraper.movies" + }, + { + "disclaimer" : "Feel free to use this script. For information visit kodi.tv", + "author" : "Team Kodi", + "dependencies" : [ + { + "addonid" : "xbmc.python", + "optional" : false, + "version" : "2.1.0" + } + ], + "path" : "/home/martijn/.kodi/addons/service.xbmc.versioncheck", + "extrainfo" : [], + "rating" : -1, + "description" : "Kodi Version Check only supports a number of platforms/distros as releases may differ between them. For more information visit the kodi.tv website.", + "enabled" : true, + "summary" : "Kodi Version Check checks if you are running latest released version.", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fservice.xbmc.versioncheck%2ficon.png/", + "addonid" : "service.xbmc.versioncheck", + "name" : "Version Check", + "installed" : true, + "type" : "xbmc.service", + "broken" : false, + "version" : "0.3.22", + "fanart" : "" + }, + { + "rating" : -1, + "extrainfo" : [ + { + "key" : "language", + "value" : "nl" + }, + { + "value" : "video", + "key" : "provides" + } + ], + "description" : "Watch videos from Gamekings.nl (dutch)", + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/plugin.video.gamekings", + "dependencies" : [ + { + "version" : "1.4.5", + "addonid" : "plugin.video.twitch", + "optional" : false + }, + { + "version" : "4.1.4", + "addonid" : "plugin.video.vimeo", + "optional" : false + }, + { + "addonid" : "plugin.video.youtube", + "optional" : false, + "version" : "5.1.7" + }, + { + "addonid" : "script.module.beautifulsoup", + "optional" : false, + "version" : "3.0.8" + }, + { + "version" : "2.4.3", + "addonid" : "script.module.requests", + "optional" : false + }, + { + "optional" : false, + "addonid" : "xbmc.python", + "version" : "2.14.0" + } + ], + "author" : "Skipmode A1, Amelandbor", + "disclaimer" : "For bugs, requests or general questions visit the Gamekings.nl thread on the Kodi forum.", + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.gamekings%2ffanart.jpg/", + "version" : "1.2.7", + "broken" : false, + "type" : "xbmc.python.pluginsource", + "installed" : true, + "name" : "GameKings", + "addonid" : "plugin.video.gamekings", + "summary" : "Watch videos from Gamekings.nl (dutch)", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.gamekings%2ficon.png/" + }, + { + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fscript.module.beautifulsoup%2ficon.png/", + "summary" : "HTML/XML parser for quick-turnaround applications like screen-scraping", + "name" : "BeautifulSoup", + "addonid" : "script.module.beautifulsoup", + "type" : "xbmc.python.module", + "broken" : false, + "installed" : true, + "fanart" : "", + "version" : "3.2.1", + "disclaimer" : "", + "author" : "Leonard Richardson (leonardr@segfault.org)", + "dependencies" : [ + { + "version" : "2.1.0", + "addonid" : "xbmc.python", + "optional" : false + } + ], + "path" : "/home/martijn/.kodi/addons/script.module.beautifulsoup", + "enabled" : true, + "description" : "Beautiful Soup parses arbitrarily invalid SGML and provides a variety of methods and Pythonic idioms for iterating and searching the parse tree.", + "extrainfo" : [], + "rating" : -1 + }, + { + "dependencies" : [ + { + "addonid" : "xbmc.python", + "optional" : false, + "version" : "2.1.0" + } + ], + "author" : "PythonWare", + "disclaimer" : "", + "rating" : -1, + "extrainfo" : [], + "description" : "", + "enabled" : true, + "path" : "/usr/share/kodi/addons/script.module.pil", + "addonid" : "script.module.pil", + "name" : "Python Image Library", + "summary" : "", + "thumbnail" : "", + "version" : "1.1.7", + "fanart" : "", + "installed" : true, + "type" : "xbmc.python.module", + "broken" : false + }, + { + "type" : "xbmc.python.pluginsource", + "broken" : false, + "installed" : true, + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.southpark_unofficial%2ffanart.jpg/", + "version" : "0.4.5", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.southpark_unofficial%2ficon.png/", + "summary" : "South Park Unofficial Player", + "name" : "South Park", + "addonid" : "plugin.video.southpark_unofficial", + "path" : "/home/martijn/.kodi/addons/plugin.video.southpark_unofficial", + "enabled" : true, + "extrainfo" : [ + { + "key" : "language", + "value" : "en" + }, + { + "value" : "video", + "key" : "provides" + } + ], + "description" : "Watch South Park episodes. The supported countries are the one that can view videos from http://southpark.cc.com or http://www.southpark.de.", + "rating" : -1, + "disclaimer" : "Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.", + "author" : "Deroad", + "dependencies" : [ + { + "version" : "2.1.0", + "addonid" : "xbmc.python", + "optional" : false + } + ] + }, + { + "path" : "/home/martijn/.kodi/addons/plugin.video.vimeo", + "enabled" : true, + "description" : "Vimeo is a one of the biggest video-sharing websites of the world.", + "rating" : -1, + "extrainfo" : [ + { + "key" : "provides", + "value" : "video" + } + ], + "disclaimer" : "", + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.python", + "version" : "2.14.0" + } + ], + "author" : "bromix", + "type" : "xbmc.python.pluginsource", + "broken" : false, + "installed" : true, + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.vimeo%2ffanart.jpg/", + "version" : "4.1.4", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.vimeo%2ficon.png/", + "summary" : "Plugin for Vimeo", + "name" : "Vimeo", + "addonid" : "plugin.video.vimeo" + }, + { + "installed" : true, + "type" : "xbmc.metadata.scraper.musicvideos", + "broken" : false, + "version" : "1.3.3", + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.musicvideos.theaudiodb.com%2ffanart.jpg/", + "summary" : "theaudiodb.com Music Video Scraper", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.musicvideos.theaudiodb.com%2ficon.png/", + "addonid" : "metadata.musicvideos.theaudiodb.com", + "name" : "TheAudioDb.com for Music Videos", + "path" : "/home/martijn/.kodi/addons/metadata.musicvideos.theaudiodb.com", + "rating" : -1, + "extrainfo" : [], + "description" : "This scraper downloads Music Video information from TheAudioDB.com website. Due to various search difficulties the scraper currently expects the folder/filename to be formatted as 'artist - trackname' otherwise it will not return results. It is important to note the space between the hyphen.", + "enabled" : true, + "disclaimer" : "", + "author" : "Team Kodi", + "dependencies" : [ + { + "version" : "3.1.0", + "optional" : false, + "addonid" : "metadata.common.fanart.tv" + }, + { + "version" : "1.7.3", + "optional" : false, + "addonid" : "metadata.common.theaudiodb.com" + }, + { + "version" : "2.1.0", + "addonid" : "xbmc.metadata", + "optional" : false + } + ] + }, + { + "disclaimer" : "", + "dependencies" : [ + { + "addonid" : "script.module.requests", + "optional" : false, + "version" : "2.12.4" + }, + { + "optional" : false, + "addonid" : "xbmc.python", + "version" : "2.19.0" + } + ], + "author" : "jdf76, bromix", + "path" : "/home/martijn/.kodi/addons/plugin.video.youtube", + "enabled" : true, + "description" : "YouTube is one of the biggest video-sharing websites of the world.", + "rating" : -1, + "extrainfo" : [ + { + "value" : "video", + "key" : "provides" + } + ], + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.youtube%2ficon.png/", + "summary" : "Plugin for YouTube", + "addonid" : "plugin.video.youtube", + "name" : "YouTube", + "installed" : true, + "broken" : false, + "type" : "xbmc.python.pluginsource", + "version" : "5.3.12", + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.youtube%2ffanart.jpg/" + }, + { + "broken" : false, + "type" : "xbmc.python.pluginsource", + "installed" : true, + "fanart" : "", + "version" : "1.3.1", + "summary" : "Uitzendinggemist (NPO) - Watch free videos from Uitzendinggemist (only with a dutch ip-address)", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.uzg%2ficon.png/", + "name" : "Uitzendinggemist (NPO)", + "addonid" : "plugin.video.uzg", + "path" : "/home/martijn/.kodi/addons/plugin.video.uzg", + "rating" : -1, + "extrainfo" : [ + { + "key" : "language", + "value" : "nl" + }, + { + "value" : "video", + "key" : "provides" + } + ], + "description" : "Dutch Uitzendinggemist (NPO) videos NED1 / NED2 / NED3 (only with a dutch ip-address)", + "enabled" : true, + "disclaimer" : "", + "author" : "Bas Magré (Opvolger)", + "dependencies" : [ + { + "version" : "2.4.0", + "addonid" : "script.module.xbmcswift2", + "optional" : false + }, + { + "version" : "2.1.0", + "addonid" : "xbmc.python", + "optional" : false + } + ] + }, + { + "fanart" : "image://%2fusr%2fshare%2fkodi%2faddons%2fskin.estouchy%2fresources%2ffanart.jpg/", + "version" : "1.1.9", + "broken" : false, + "type" : "xbmc.gui.skin", + "installed" : true, + "name" : "Estouchy", + "addonid" : "skin.estouchy", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fskin.estouchy%2fresources%2ficon.png/", + "summary" : "Skin for touchscreen devices", + "enabled" : true, + "extrainfo" : [], + "description" : "Skin designed to be used on touchscreen devices like tablets and smartphones", + "rating" : -1, + "path" : "/usr/share/kodi/addons/skin.estouchy", + "author" : "Team Kodi", + "dependencies" : [ + { + "version" : "5.12.0", + "addonid" : "xbmc.gui", + "optional" : false + } + ], + "disclaimer" : "" + }, + { + "addonid" : "script.module.requests", + "name" : "requests", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fscript.module.requests%2ficon.png/", + "summary" : "Python HTTP for Humans", + "version" : "2.12.4", + "fanart" : "", + "installed" : true, + "broken" : false, + "type" : "xbmc.python.module", + "dependencies" : [ + { + "version" : "2.14.0", + "optional" : false, + "addonid" : "xbmc.python" + } + ], + "author" : "kennethreitz, beenje", + "disclaimer" : "", + "enabled" : true, + "description" : "Packed for KODI from https://github.com/kennethreitz/requests", + "rating" : -1, + "extrainfo" : [], + "path" : "/home/martijn/.kodi/addons/script.module.requests" + }, + { + "version" : "0.9.98", + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fscript.lazytv%2ffanart.jpg/", + "installed" : true, + "type" : "xbmc.python.script", + "broken" : false, + "addonid" : "script.lazytv", + "name" : "LazyTV", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fscript.lazytv%2ficon.png/", + "summary" : "LazyTV", + "enabled" : true, + "extrainfo" : [ + { + "value" : "en", + "key" : "language" + }, + { + "value" : "executable", + "key" : "provides" + } + ], + "description" : "You have a huge library of TV shows and you havent viewed half of it. So why does it feel like such a chore to sit down and watch something?\nLazyTV is here to free you from your battles with indecision, instead letting you lean back and soak up content. With one click you can be channel-surfing your own library, or have what you probably want to watch pop up in a single window.\nAfterall, you know you want to watch TV, so why do you also have to decide what specifically to watch?\n\nUnlike a smart playlist or skin widget, LazyTV doesnt just provide the first unwatched episode of a TV show. It provides the first unwatched episode AFTER the last watched one in your library. A small, but important, distinction.\n\nLazyTV offers two main functions:\nThe first creates and launches a randomised playlist of the TV episodes. And not just any episodes, but the next episode it thinks you would want to watch. You also have the option to blend in your movies (both the watched and the unwatched) to complete the channel-surfing experience.\nThe second main function populates a window with the next available episode for each of your TV Shows. One click and your viewing menu is there, immediately.\n\nCombine either of the main functions with a playlist of preselected shows to customise your experience even further.\nSome TV shows, like cartoons or skit shows, can be viewed out of episodic order. So LazyTV gives you the ability to identify these shows and treat them differently. Those shows will be played in a random order.\n\nLazyTV also offers two minor functions that extend beyond the addon itself:\nThe first is an option to be notified if you are about to watch an episode that has an unwatched episode before it. This function excludes the TV shows identified as able to be watched out of order.\nThe second option posts a notification when you finish watching a TV episode telling you that the next show is available and asks if you want to view it now.\n\n\nLazyTV contains a service that stores the next episodes' information and monitors your player to pre-empt database changes. This is my attempt to make the addon more responsive on my Raspberry Pi. The Pi still takes a while to \"warm-up\"; a full refresh of the episode data (which occurs at start-up and on a library update) takes about 30 seconds for my ~100 show library*. However, the show list window opens and the random player starts in less than 2 seconds.\n\n*The same update takes 2 seconds on my laptop with its i5 processor.", + "rating" : -1, + "path" : "/home/martijn/.kodi/addons/script.lazytv", + "dependencies" : [ + { + "version" : "2.1.0", + "optional" : false, + "addonid" : "xbmc.python" + } + ], + "author" : "KodeKarnage", + "disclaimer" : "" + }, + { + "extrainfo" : [ + { + "value" : "executable", + "key" : "provides" + } + ], + "rating" : -1, + "description" : "The most powerful way to access content on Netflix and YouTube and Amazon Instant Video would be a web browser, if web browsers provided good native support for a 10-foot user interface. This add-on launches a browser and connects the arrow buttons on the remote control to the mouse pointer. This is the most user-friendly way to consume online content without needing a wireless keyboard.", + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/plugin.program.remote.control.browser", + "dependencies" : [ + { + "version" : "4.3.2", + "addonid" : "script.module.beautifulsoup4", + "optional" : false + }, + { + "version" : "1.1.7", + "addonid" : "script.module.pil", + "optional" : false + }, + { + "version" : "2.24.0", + "addonid" : "xbmc.python", + "optional" : false + } + ], + "author" : "Chad Parry", + "disclaimer" : "The experience will be degraded unless these external dependencies are installed: “psutil,” “pyalsaaudio,” “pylirc2,” and “Pillow.” Another helpful utility is “unclutter,” which automatically hides the mouse pointer. (On a Debian-based system, run “sudo apt-get install python-psutil python-alsaaudio python-pylirc python-pil unclutter”). Finally, a theme with a large mouse pointer will improve pointer visibility, (e.g., https://www.gnome-look.org/p/999574/).", + "fanart" : "", + "version" : "1.0.5", + "type" : "xbmc.python.pluginsource", + "broken" : false, + "installed" : true, + "name" : "Remote Control Browser", + "addonid" : "plugin.program.remote.control.browser", + "summary" : "Browse websites with a remote control", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.program.remote.control.browser%2ficon.png/" + }, + { + "fanart" : "", + "version" : "2.7.0", + "type" : "xbmc.metadata.scraper.albums", + "broken" : false, + "installed" : true, + "name" : "Universal Album Scraper", + "addonid" : "metadata.album.universal", + "summary" : "Universal Scraper for Albums", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.album.universal%2ficon.png/", + "description" : "This scraper collects information from the following supported sites: MusicBrainz, last.fm, allmusic.com and amazon.de, while grabs artwork from: fanart.tv, last.fm and allmusic.com. It can be set field by field that from which site you want that specific information.\n\nThe initial search is always done on MusicBrainz. In case allmusic and/or amazon.de links are not added on the MusicBrainz site, fields from allmusic.com and/or amazon.de cannot be fetched (very easy to add those missing links though).", + "extrainfo" : [], + "rating" : -1, + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/metadata.album.universal", + "dependencies" : [ + { + "optional" : false, + "addonid" : "metadata.common.allmusic.com", + "version" : "3.1.0" + }, + { + "optional" : false, + "addonid" : "metadata.common.fanart.tv", + "version" : "3.1.0" + }, + { + "version" : "2.1.0", + "optional" : false, + "addonid" : "metadata.common.musicbrainz.org" + }, + { + "version" : "1.8.1", + "optional" : false, + "addonid" : "metadata.common.theaudiodb.com" + }, + { + "optional" : false, + "addonid" : "xbmc.metadata", + "version" : "2.1.0" + } + ], + "author" : "Olympia, Team Kodi", + "disclaimer" : "" + }, + { + "fanart" : "", + "version" : "1.0.0", + "type" : "xbmc.audioencoder", + "broken" : false, + "installed" : true, + "name" : "AAC encoder", + "addonid" : "audioencoder.xbmc.builtin.aac", + "summary" : "AAC Audio Encoder", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2faudioencoder.xbmc.builtin.aac%2ficon.png/", + "description" : "AAC Audio Encoder", + "extrainfo" : [], + "rating" : -1, + "enabled" : true, + "path" : "/usr/share/kodi/addons/audioencoder.xbmc.builtin.aac", + "author" : "spiff", + "dependencies" : [ + { + "version" : "1.0.0", + "optional" : false, + "addonid" : "xbmc.audioencoder" + } + ], + "disclaimer" : "" + }, + { + "broken" : false, + "type" : "xbmc.metadata.scraper.library", + "installed" : true, + "fanart" : "", + "version" : "1.3.4", + "summary" : "HTBackdrops Scraper Library", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.htbackdrops.com%2ficon.png/", + "name" : "HTBackdrops Scraper Library", + "addonid" : "metadata.common.htbackdrops.com", + "path" : "/home/martijn/.kodi/addons/metadata.common.htbackdrops.com", + "description" : "Download backdrops from www.htbackdrops.com", + "extrainfo" : [], + "rating" : -1, + "enabled" : true, + "disclaimer" : "", + "dependencies" : [ + { + "version" : "2.1.0", + "optional" : false, + "addonid" : "xbmc.metadata" + } + ], + "author" : "Team Kodi" + }, + { + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fresource.language.en_gb%2ficon.png/", + "summary" : "English language pack", + "name" : "English", + "addonid" : "resource.language.en_gb", + "broken" : false, + "type" : "kodi.resource.language", + "installed" : true, + "fanart" : "", + "version" : "2.0.1", + "disclaimer" : "English is the default language for Kodi, removing it may cause issues", + "author" : "Team Kodi", + "dependencies" : [ + { + "addonid" : "kodi.resource", + "optional" : false, + "version" : "1.0.0" + } + ], + "path" : "/usr/share/kodi/addons/resource.language.en_gb", + "enabled" : true, + "description" : "English version of all texts used in Kodi.", + "extrainfo" : [], + "rating" : -1 + }, + { + "summary" : "AllMusic Music Scraper Library", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.allmusic.com%2ficon.png/", + "name" : "AllMusic Scraper Library", + "addonid" : "metadata.common.allmusic.com", + "broken" : false, + "type" : "xbmc.metadata.scraper.library", + "installed" : true, + "fanart" : "", + "version" : "3.1.1", + "disclaimer" : "", + "author" : "Team Kodi", + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.metadata", + "version" : "2.1.0" + } + ], + "path" : "/home/martijn/.kodi/addons/metadata.common.allmusic.com", + "rating" : -1, + "description" : "Download Music information from www.allmusic.com", + "extrainfo" : [], + "enabled" : true + }, + { + "enabled" : true, + "description" : "TheTVDB.com is a TV Scraper. The site is a massive open database that can be modified by anybody and contains full meta data for many shows in different languages. All content and images on the site have been contributed by their users for users and have a high standard or quality. The database schema and website are open source under the GPL.", + "rating" : -1, + "extrainfo" : [], + "path" : "/home/martijn/.kodi/addons/metadata.tvdb.com", + "author" : "Team Kodi", + "dependencies" : [ + { + "version" : "2.7.8", + "addonid" : "metadata.common.imdb.com", + "optional" : false + }, + { + "version" : "2.1.0", + "optional" : false, + "addonid" : "xbmc.metadata" + } + ], + "disclaimer" : "", + "fanart" : "", + "version" : "1.8.4", + "broken" : false, + "type" : "xbmc.metadata.scraper.tvshows", + "installed" : true, + "name" : "The TVDB", + "addonid" : "metadata.tvdb.com", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.tvdb.com%2ficon.png/", + "summary" : "Fetch TV show metadata from TheTVDB.com" + }, + { + "fanart" : "", + "version" : "2.1.1", + "broken" : false, + "type" : "xbmc.metadata.scraper.library", + "installed" : true, + "name" : "MusicBrainz Scraper Library", + "addonid" : "metadata.common.musicbrainz.org", + "summary" : "MusicBrainz Music Scraper Library", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.musicbrainz.org%2ficon.png/", + "description" : "Download Music information from www.musicbrainz.org", + "extrainfo" : [], + "rating" : -1, + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/metadata.common.musicbrainz.org", + "dependencies" : [ + { + "version" : "2.1.0", + "optional" : false, + "addonid" : "xbmc.metadata" + } + ], + "author" : "Team Kodi", + "disclaimer" : "" + }, + { + "broken" : false, + "type" : "xbmc.metadata.scraper.albums", + "installed" : true, + "fanart" : "", + "version" : "1.0.0", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fmetadata.local%2ficon.png/", + "summary" : "Local Infomation only pseudo-scraper", + "name" : "Local information only", + "addonid" : "metadata.local", + "path" : "/usr/share/kodi/addons/metadata.local", + "enabled" : true, + "description" : "Use local information only", + "extrainfo" : [], + "rating" : -1, + "disclaimer" : "", + "author" : "Team Kodi", + "dependencies" : [ + { + "version" : "1.0", + "optional" : false, + "addonid" : "xbmc.metadata" + } + ] + }, + { + "summary" : "TMDb Scraper Library", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.themoviedb.org%2ficon.png/", + "name" : "The Movie Database Scraper Library", + "addonid" : "metadata.common.themoviedb.org", + "broken" : false, + "type" : "xbmc.metadata.scraper.library", + "installed" : true, + "fanart" : "", + "version" : "2.14.0", + "disclaimer" : "", + "dependencies" : [ + { + "version" : "2.1.0", + "addonid" : "xbmc.metadata", + "optional" : false + } + ], + "author" : "Team Kodi", + "path" : "/home/martijn/.kodi/addons/metadata.common.themoviedb.org", + "extrainfo" : [], + "rating" : -1, + "description" : "Download thumbs and fanarts from www.themoviedb.org", + "enabled" : true + }, + { + "dependencies" : [ + { + "optional" : false, + "addonid" : "kodi.resource", + "version" : "1.0.0" + } + ], + "author" : "Team Kodi", + "disclaimer" : "", + "extrainfo" : [], + "description" : "Kodi GUI sounds", + "rating" : -1, + "enabled" : true, + "path" : "/usr/share/kodi/addons/resource.uisounds.kodi", + "name" : "Kodi UI Sounds", + "addonid" : "resource.uisounds.kodi", + "summary" : "Kodi GUI sounds", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fresource.uisounds.kodi%2ficon.png/", + "fanart" : "", + "version" : "1.0.0", + "type" : "kodi.resource.uisounds", + "broken" : false, + "installed" : true + }, + { + "path" : "/home/martijn/.kodi/addons/metadata.common.theaudiodb.com", + "enabled" : true, + "extrainfo" : [], + "description" : "Download Music information from www.theaudiodb.com", + "rating" : -1, + "disclaimer" : "", + "author" : "Team Kodi", + "dependencies" : [ + { + "addonid" : "xbmc.metadata", + "optional" : false, + "version" : "2.1.0" + } + ], + "type" : "xbmc.metadata.scraper.library", + "broken" : false, + "installed" : true, + "fanart" : "", + "version" : "1.9.0", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.theaudiodb.com%2ficon.png/", + "summary" : "TheAudioDb Music Scraper Library", + "name" : "TheAudioDb Scraper Library", + "addonid" : "metadata.common.theaudiodb.com" + }, + { + "version" : "3.7.2", + "fanart" : "", + "installed" : true, + "broken" : false, + "type" : "xbmc.metadata.scraper.artists", + "addonid" : "metadata.artists.universal", + "name" : "Universal Artist Scraper", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.artists.universal%2ficon.png/", + "summary" : "Universal Scraper for Artists", + "enabled" : true, + "extrainfo" : [], + "description" : "This scraper collects information from the following supported sites: TheAudioDb.com, MusicBrainz, last.fm, and allmusic.com, while grabs artwork from: fanart.tv, htbackdrops.com, last.fm and allmusic.com. It can be set field by field that from which site you want that specific information.\n\nThe initial search is always done on MusicBrainz. In case allmusic link is not added on the MusicBrainz site fields from allmusic.com cannot be fetched (very easy to add those missing links though).", + "rating" : -1, + "path" : "/home/martijn/.kodi/addons/metadata.artists.universal", + "dependencies" : [ + { + "version" : "3.1.0", + "optional" : false, + "addonid" : "metadata.common.allmusic.com" + }, + { + "version" : "3.1.0", + "addonid" : "metadata.common.fanart.tv", + "optional" : false + }, + { + "version" : "1.3.2", + "optional" : false, + "addonid" : "metadata.common.htbackdrops.com" + }, + { + "version" : "2.1.0", + "addonid" : "metadata.common.musicbrainz.org", + "optional" : false + }, + { + "addonid" : "metadata.common.theaudiodb.com", + "optional" : false, + "version" : "1.8.1" + }, + { + "addonid" : "xbmc.metadata", + "optional" : false, + "version" : "2.1.0" + } + ], + "author" : "Olympia, Team Kodi", + "disclaimer" : "" + }, + { + "path" : "/home/martijn/.kodi/addons/metadata.common.imdb.com", + "enabled" : true, + "rating" : -1, + "description" : "Download Movie information from www.imdb.com", + "extrainfo" : [], + "disclaimer" : "", + "author" : "Team Kodi", + "dependencies" : [ + { + "version" : "2.1.0", + "addonid" : "xbmc.metadata", + "optional" : false + } + ], + "installed" : true, + "broken" : false, + "type" : "xbmc.metadata.scraper.library", + "version" : "2.8.7", + "fanart" : "", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fmetadata.common.imdb.com%2ficon.png/", + "summary" : "IMDB Scraper Library", + "addonid" : "metadata.common.imdb.com", + "name" : "IMDB Scraper Library" + }, + { + "disclaimer" : "", + "dependencies" : [ + { + "optional" : false, + "addonid" : "xbmc.python", + "version" : "2.1.0" + } + ], + "author" : "Jonathan Beluch (jbel)", + "path" : "/home/martijn/.kodi/addons/script.module.xbmcswift2", + "description" : "", + "extrainfo" : [], + "rating" : -1, + "enabled" : true, + "summary" : "", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fscript.module.xbmcswift2%2ficon.png/", + "addonid" : "script.module.xbmcswift2", + "name" : "xbmcswift2", + "installed" : true, + "broken" : false, + "type" : "xbmc.python.module", + "version" : "2.4.0", + "fanart" : "" + }, + { + "path" : "/usr/share/kodi/addons/skin.estuary", + "enabled" : true, + "rating" : -1, + "extrainfo" : [], + "description" : "Estuary is the default skin for Kodi 17.0 and above. It attempts to be easy for first time Kodi users to understand and use.", + "disclaimer" : "Estuary is the default skin for Kodi, removing it may cause issues", + "dependencies" : [ + { + "version" : "5.12.0", + "addonid" : "xbmc.gui", + "optional" : false + } + ], + "author" : "phil65, Ichabod Fletchman", + "broken" : false, + "type" : "xbmc.gui.skin", + "installed" : true, + "fanart" : "image://%2fusr%2fshare%2fkodi%2faddons%2fskin.estuary%2fresources%2ffanart.jpg/", + "version" : "1.9.12", + "thumbnail" : "image://%2fusr%2fshare%2fkodi%2faddons%2fskin.estuary%2fresources%2ficon.png/", + "summary" : "Estuary skin by phil65. (Kodi's default skin)", + "name" : "Estuary", + "addonid" : "skin.estuary" + }, + { + "version" : "1.4.5", + "fanart" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.twitch%2ffanart.jpg/", + "installed" : true, + "broken" : false, + "type" : "xbmc.python.pluginsource", + "addonid" : "plugin.video.twitch", + "name" : "Twitch", + "summary" : "Twitch video plugin", + "thumbnail" : "image://%2fhome%2fmartijn%2f.kodi%2faddons%2fplugin.video.twitch%2ficon.png/", + "extrainfo" : [ + { + "key" : "language", + "value" : "en" + }, + { + "value" : "video", + "key" : "provides" + } + ], + "description" : "Watch your favorite gaming streams!", + "rating" : -1, + "enabled" : true, + "path" : "/home/martijn/.kodi/addons/plugin.video.twitch", + "dependencies" : [ + { + "version" : "1.2.0", + "optional" : false, + "addonid" : "script.module.xbmcswift2" + }, + { + "addonid" : "xbmc.python", + "optional" : false, + "version" : "2.20.0" + } + ], + "author" : "A Talented Community", + "disclaimer" : "" + } + ], + "limits" : { + "start" : 0, + "end" : 41, + "total" : 41 + } + } +} diff --git a/app/src/testUtils/assets/VideoLibrary.GetEpisodes.json b/app/src/testUtils/assets/VideoLibrary.GetEpisodes.json new file mode 100644 index 0000000..2677f9b --- /dev/null +++ b/app/src/testUtils/assets/VideoLibrary.GetEpisodes.json @@ -0,0 +1,50320 @@ +{ + "id" : "libTVShowEpisodes", + "jsonrpc" : "2.0", + "result" : { + "limits" : { + "start" : 0, + "end" : 8, + "total" : 8 + }, + "episodes" : [ + { + "votes" : "1", + "thumbnail" : "", + "playcount" : 1, + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 10 + } + }, + "plot" : "During the series premiere of \"3,\" 29-year-old entrepreneur April Francis, 34-year-old pharmaceutical sales rep Rachel Harley and 24-year-old model Libby Lopez meet for the first time at their luxurious lakeside home in Chicago, where they will begin their quest for love by meeting eligible men from across the country.", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E1.mp4", + "specialsortseason" : -1, + "fanart" : "", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "My Guy Is Out There", + "seasonid" : 6, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "4360458" + }, + "runtime" : 3600, + "lastplayed" : "2017-01-16 17:12:43", + "tvshowid" : 2, + "label" : "1x01. My Guy Is Out There", + "firstaired" : "2012-07-26", + "cast" : [], + "director" : [], + "writer" : [], + "episodeid" : 9, + "rating" : 10, + "showtitle" : "3", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1 + }, + { + "cast" : [], + "firstaired" : "2012-07-29", + "director" : [], + "label" : "1x02. We Will Meet Again", + "rating" : 0, + "showtitle" : "3", + "episodeid" : 10, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E2.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "April, Libby and Rachel set off in different directions across the country to begin their one-on-one dates.", + "episode" : 2, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "playcount" : 1, + "specialsortepisode" : -1, + "fanart" : "", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "seasonid" : 6, + "title" : "We Will Meet Again", + "userrating" : 0, + "tvshowid" : 2, + "lastplayed" : "2017-02-06 16:38:57", + "uniqueid" : { + "unknown" : "4364123" + }, + "runtime" : 3600 + }, + { + "plot" : "The men are shocked when the ladies' loved ones crash their next round of dates.", + "episode" : 3, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E3.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "You'll See the Sparkle", + "seasonid" : 6, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4367233" + }, + "lastplayed" : "", + "tvshowid" : 2, + "label" : "1x03. You'll See the Sparkle", + "director" : [], + "cast" : [], + "firstaired" : "2012-08-05", + "writer" : [], + "episodeid" : 11, + "rating" : 0, + "showtitle" : "3", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1 + }, + { + "label" : "1x04. It's Totally Worth the Wait...I Promise", + "director" : [], + "firstaired" : "2012-08-12", + "cast" : [], + "writer" : [], + "episodeid" : 12, + "rating" : 0, + "showtitle" : "3", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "Libby has a change of heart, and says goodbye to one of her suitors. Rachel learns to relax and enjoy her dates confirming that she is ready to move on.", + "episode" : 4, + "playcount" : 1, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E4.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "It's Totally Worth the Wait...I Promise", + "seasonid" : 6, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4727067" + }, + "lastplayed" : "2017-02-06 16:56:12", + "tvshowid" : 2 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "episode" : 5, + "plot" : "Romance buds when the ladies visit their guys' hometowns all over the country.", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E5.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "", + "specialsortepisode" : -1, + "title" : "You Should Feel Lucky", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 6, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4727068" + }, + "runtime" : 3600, + "tvshowid" : 2, + "label" : "1x05. You Should Feel Lucky", + "cast" : [], + "firstaired" : "2012-08-20", + "director" : [], + "episodeid" : 13, + "writer" : [], + "rating" : 0, + "showtitle" : "3", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1 + }, + { + "tvshowid" : 2, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4727069" + }, + "lastplayed" : "", + "seasonid" : 6, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/" + }, + "userrating" : 0, + "title" : "Butterfly Thing", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E6.mp4", + "plot" : "The ladies face their most difficult decision yet - paring their potential boyfriends down to 2.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 6, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "3", + "rating" : 0, + "writer" : [], + "episodeid" : 14, + "director" : [], + "cast" : [], + "firstaired" : "2012-08-26", + "label" : "1x06. Butterfly Thing" + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [], + "cast" : [], + "firstaired" : "2012-08-30", + "label" : "1x07. Life Is Right Now In Paradise", + "showtitle" : "3", + "rating" : 0, + "episodeid" : 15, + "writer" : [], + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "seasonid" : 6, + "title" : "Life Is Right Now In Paradise", + "userrating" : 0, + "tvshowid" : 2, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4727070" + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E7.mp4", + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 7, + "playcount" : 0, + "plot" : "The ladies and their men travel to the tropical paradise of Hawaii for the penultimate round of dates.", + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "" + }, + { + "tvshowid" : 2, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4727071" + }, + "lastplayed" : "", + "seasonid" : 6, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + "userrating" : 0, + "title" : "You're It, Mister", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/Season 1/S1E8.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 8, + "plot" : "In the final stage, the 3 women decide if they've found love during their journey.", + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "3", + "rating" : 0, + "writer" : [], + "episodeid" : 16, + "director" : [], + "cast" : [], + "firstaired" : "2012-09-05", + "label" : "1x08. You're It, Mister" + }, + { + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 1, + "episode" : 1, + "plot" : "I 4-Stjerners Middag i aften har tidligere professionel fodboldspiller nu spilleragent Allan Nielsen inviteret springrytter Tina Lund, skuespiller Laura Drasbæk og ejendomsmægler Jan Fog til middag i villaen i Holte. Menuen står på sushi og andre lækkerier, som kokken fra Allans egen sushi-restaurant har hjulpet med at tilberede. Så nu vil det vise sig, om alle gæsterne er til rå fisk - og hvad mon de siger til, at Allan ikke har lavet al maden selv? Til gengæld har Allan Nielsen ommøbleret hele stuen for at lave et gennemført japansk tema - og det bliver virkelig gennemført!", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E1.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "Hos Allan Nielsen", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "lastplayed" : "2017-02-06 16:52:28", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826271" + }, + "tvshowid" : 3, + "label" : "1x01. Hos Allan Nielsen", + "director" : [], + "cast" : [], + "firstaired" : "2010-01-25", + "episodeid" : 17, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1 + }, + { + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "Hos Laura Drasbæk", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "1826291" + }, + "runtime" : 3600, + "lastplayed" : "2017-02-06 16:52:05", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E2.mp4", + "specialsortseason" : -1, + "thumbnail" : "", + "votes" : "0", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "plot" : "I 4-Stjerners Middag i aften har skuespiller Laura Drasbæk inviteret fodboldspiller Allan Nielsen, springrytteren Tina Lund og ejendomsmægleren Jan Fog til middag i sin lejlighed på Nørrebro. Laura er næsten lige flyttet ind, og det bærer hjemmet præg af. Menuen står bla. på indisk Mollygatawny-suppe, og Laura har hyret en ølkender til at komme og fortælle om drikkevarerne. Laura elsker mad men er meget utålmodig, så hun improviserer sig gerne frem. Hendes gæster kender ikke så meget til skuespillerbranchen, men lytter nysgerrigt når Laura fortæller om, hvor svært det har været at få karriere og forhold til at gå op i en højere enhed.", + "playcount" : 0, + "episode" : 2, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "cast" : [], + "firstaired" : "2010-01-26", + "director" : [], + "label" : "1x02. Hos Laura Drasbæk", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 18 + }, + { + "lastplayed" : "2017-02-06 17:02:53", + "uniqueid" : { + "unknown" : "1826301" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 1, + "episode" : 3, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E3.mp4", + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 19, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "1x03", + "cast" : [], + "firstaired" : "2010-01-27", + "director" : [] + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2010-01-28", + "label" : "1x04", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 20, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E4.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "episode" : 4, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826311" + } + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E5.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "episode" : 5, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "1826321" + }, + "runtime" : 3600, + "cast" : [], + "firstaired" : "2010-02-01", + "director" : [], + "label" : "1x05", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 21, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "1826331" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 9, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 6, + "playcount" : 0, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E6.mp4", + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 22, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x06", + "cast" : [], + "firstaired" : "2010-02-02", + "director" : [] + }, + { + "writer" : [], + "episodeid" : 23, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "1x07", + "cast" : [], + "firstaired" : "2010-02-03", + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "playcount" : 0, + "episode" : 7, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E7.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "1826341" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 8, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E8.mp4", + "uniqueid" : { + "unknown" : "1826351" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "writer" : [], + "episodeid" : 24, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x08", + "cast" : [], + "firstaired" : "2010-02-04", + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "label" : "1x09", + "cast" : [], + "firstaired" : "2010-02-08", + "director" : [], + "writer" : [], + "episodeid" : 25, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "thumbnail" : "", + "votes" : "0", + "episode" : 9, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E9.mp4", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "uniqueid" : { + "unknown" : "1826371" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3 + }, + { + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "1826381" + }, + "runtime" : 3600, + "lastplayed" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E10.mp4", + "specialsortseason" : -1, + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "episode" : 10, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 26, + "cast" : [], + "firstaired" : "2010-02-09", + "director" : [], + "label" : "1x10" + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 27, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x11", + "director" : [], + "firstaired" : "2010-02-10", + "cast" : [], + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826391" + }, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "plot" : "", + "playcount" : 0, + "episode" : 11, + "votes" : "0", + "thumbnail" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E11.mp4", + "specialsortseason" : -1 + }, + { + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "episode" : 12, + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E12.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "1826401" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "label" : "1x12", + "cast" : [], + "firstaired" : "2010-02-11", + "director" : [], + "writer" : [], + "episodeid" : 28, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1 + }, + { + "label" : "1x13", + "cast" : [], + "firstaired" : "2010-02-15", + "director" : [], + "episodeid" : 29, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "plot" : "", + "episode" : 13, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E13.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "1826411" + }, + "runtime" : 3600, + "tvshowid" : 3 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "episode" : 14, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E14.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "1826421" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "writer" : [], + "episodeid" : 30, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x14", + "cast" : [], + "firstaired" : "2010-02-16", + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "1826431" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "votes" : "0", + "thumbnail" : "", + "episode" : 15, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E15.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x15", + "cast" : [], + "firstaired" : "2010-02-17", + "director" : [], + "writer" : [], + "episodeid" : 31, + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2010-02-18", + "label" : "1x16", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 32, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E16.mp4", + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "", + "episode" : 16, + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826441" + } + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2010-02-22", + "label" : "1x17", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 33, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E17.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "episode" : 17, + "plot" : "", + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826601" + } + }, + { + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826661" + }, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "playcount" : 0, + "episode" : 18, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E18.mp4", + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 34, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x18", + "director" : [], + "firstaired" : "2010-02-23", + "cast" : [] + }, + { + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826671" + }, + "lastplayed" : "", + "tvshowid" : 3, + "episode" : 19, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E19.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x19", + "director" : [], + "firstaired" : "2010-02-24", + "cast" : [], + "writer" : [], + "episodeid" : 35, + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E20.mp4", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 0, + "episode" : 20, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "1826681" + }, + "runtime" : 3600, + "lastplayed" : "", + "cast" : [], + "firstaired" : "2010-02-25", + "director" : [], + "label" : "1x20", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 36, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "writer" : [], + "episodeid" : 37, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "1x21", + "cast" : [], + "firstaired" : "2010-03-01", + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "episode" : 21, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E21.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "1826691" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "" + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2010-03-02", + "label" : "1x22", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 38, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E22.mp4", + "specialsortseason" : -1, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 22, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826731" + }, + "lastplayed" : "" + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E23.mp4", + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "episode" : 23, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826741" + }, + "director" : [], + "cast" : [], + "firstaired" : "2010-03-03", + "label" : "1x23", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 39, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "episode" : 24, + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E24.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826751" + }, + "tvshowid" : 3, + "label" : "1x24", + "director" : [], + "firstaired" : "2010-03-04", + "cast" : [], + "episodeid" : 40, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x25", + "director" : [], + "cast" : [], + "firstaired" : "2010-03-08", + "episodeid" : 41, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826761" + }, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 25, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E25.mp4", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1 + }, + { + "label" : "1x26", + "cast" : [], + "firstaired" : "2010-03-09", + "director" : [], + "writer" : [], + "episodeid" : 42, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "votes" : "0", + "thumbnail" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "plot" : "", + "playcount" : 0, + "episode" : 26, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E26.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "1826781" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3 + }, + { + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "1826791" + }, + "runtime" : 3600, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E27.mp4", + "specialsortseason" : -1, + "votes" : "0", + "thumbnail" : "", + "episode" : 27, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "cast" : [], + "firstaired" : "2010-03-10", + "director" : [], + "label" : "1x27", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 43 + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [], + "episodeid" : 44, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x28", + "cast" : [], + "firstaired" : "2010-03-11", + "director" : [], + "uniqueid" : { + "unknown" : "1826771" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "episode" : 28, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E28.mp4", + "specialsortseason" : -1 + }, + { + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 45, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "2010-03-15", + "label" : "1x29", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E29.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "", + "episode" : 29, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "1826801" + }, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "title" : "", + "userrating" : 0 + }, + { + "cast" : [], + "firstaired" : "2010-03-16", + "director" : [], + "label" : "1x30", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 46, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E30.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 30, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "1826811" + }, + "runtime" : 3600 + }, + { + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 31, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E31.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "1826821" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "label" : "1x31", + "cast" : [], + "firstaired" : "2010-03-17", + "director" : [], + "writer" : [], + "episodeid" : 47, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E32.mp4", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 32, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "1826831" + }, + "runtime" : 3600, + "lastplayed" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 48, + "cast" : [], + "firstaired" : "2010-03-18", + "director" : [], + "label" : "1x32", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "1x33", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 49, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E33.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "episode" : 33, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3714021" + }, + "runtime" : 3600 + }, + { + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "", + "episode" : 34, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E34.mp4", + "specialsortseason" : -1, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714031" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "writer" : [], + "episodeid" : 50, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x34", + "director" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E35.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 0, + "episode" : 35, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3714041" + }, + "runtime" : 3600, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "1x35", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 51, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "label" : "1x36", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "episodeid" : 52, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "", + "episode" : 36, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "votes" : "0", + "thumbnail" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E36.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 9, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714051" + }, + "tvshowid" : 3 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "playcount" : 0, + "episode" : 37, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "votes" : "0", + "thumbnail" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E37.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714061" + }, + "tvshowid" : 3, + "label" : "1x37", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "episodeid" : 53, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1 + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3714071" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 0, + "episode" : 38, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E38.mp4", + "specialsortseason" : -1, + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 54, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "1x38", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [] + }, + { + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714081" + }, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E39.mp4", + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "episode" : 39, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 55, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "1x39" + }, + { + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714091" + }, + "lastplayed" : "", + "tvshowid" : 3, + "plot" : "", + "episode" : 40, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E40.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x40", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "writer" : [], + "episodeid" : 56, + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "1x41", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 57, + "writer" : [], + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3714101" + }, + "runtime" : 3600, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E41.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "episode" : 41, + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + { + "writer" : [], + "episodeid" : 58, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x42", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "episode" : 42, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E42.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "3714111" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "" + }, + { + "uniqueid" : { + "unknown" : "3714121" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "episode" : 43, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E43.mp4", + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [], + "episodeid" : 59, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x43", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [] + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "1x44", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 60, + "seasonid" : 9, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714131" + }, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E44.mp4", + "specialsortseason" : -1, + "plot" : "", + "playcount" : 0, + "episode" : 44, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 61, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "1x45", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E45.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 45, + "votes" : "0", + "thumbnail" : "", + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714141" + }, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9, + "title" : "", + "userrating" : 0 + }, + { + "userrating" : 0, + "title" : "", + "seasonid" : 9, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "uniqueid" : { + "unknown" : "3714151" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 46, + "plot" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E46.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x46", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "writer" : [], + "episodeid" : 62, + "showtitle" : "4 Stjerners Middag", + "rating" : 0 + }, + { + "seasonid" : 9, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3714161" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E47.mp4", + "episode" : 47, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "1x47", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 63 + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 64, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "1x48", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3714171" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 9, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "playcount" : 0, + "episode" : 48, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E48.mp4", + "specialsortseason" : -1 + }, + { + "episodeid" : 65, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "1x49", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "episode" : 49, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 1/S1E49.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3714181" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 9 + }, + { + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 0, + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E1.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "uniqueid" : { + "unknown" : "3713391" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "label" : "2x01", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "writer" : [], + "episodeid" : 66, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2 + }, + { + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 67, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x02", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713401" + }, + "lastplayed" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E2.mp4", + "playcount" : 0, + "episode" : 2, + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59" + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x03", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 68, + "writer" : [], + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713411" + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E3.mp4", + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 3, + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E4.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "plot" : "", + "episode" : 4, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713421" + }, + "runtime" : 3600, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x04", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 69, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2 + }, + { + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 70, + "director" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "label" : "2x05", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E5.mp4", + "specialsortseason" : -1, + "plot" : "", + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "playcount" : 0, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713431" + }, + "lastplayed" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "" + }, + { + "votes" : "0", + "thumbnail" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 6, + "plot" : "", + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E6.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "3713441" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "label" : "2x06", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "writer" : [], + "episodeid" : 71, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2 + }, + { + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713451" + }, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 7, + "playcount" : 0, + "votes" : "0", + "thumbnail" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E7.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x07", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "episodeid" : 72, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0 + }, + { + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x08", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 73, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E8.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 8, + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713461" + } + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x09", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 74, + "seasonid" : 10, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713471" + }, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E9.mp4", + "specialsortseason" : -1, + "plot" : "", + "episode" : 9, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 75, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "2x10", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713481" + }, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 10, + "thumbnail" : "", + "votes" : "0", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E10.mp4", + "specialsortseason" : -1 + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E11.mp4", + "playcount" : 0, + "episode" : 11, + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713491" + }, + "lastplayed" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 76, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x11", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713501" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E12.mp4", + "playcount" : 0, + "plot" : "", + "episode" : 12, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "label" : "2x12", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 77 + }, + { + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713511" + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E13.mp4", + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 13, + "plot" : "", + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x13", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 78, + "writer" : [] + }, + { + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x14", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 79, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E14.mp4", + "specialsortseason" : -1, + "votes" : "0", + "thumbnail" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "", + "episode" : 14, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "seasonid" : 10, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "3713521" + }, + "runtime" : 3600, + "lastplayed" : "" + }, + { + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713531" + }, + "lastplayed" : "", + "tvshowid" : 3, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "plot" : "", + "episode" : 15, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E15.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x15", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "writer" : [], + "episodeid" : 80, + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713541" + }, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E16.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "plot" : "", + "episode" : 16, + "playcount" : 0, + "thumbnail" : "", + "votes" : "0", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 81, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x16" + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E17.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "episode" : 17, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713551" + }, + "runtime" : 3600, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 82, + "writer" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x17", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713561" + }, + "runtime" : 3600, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "episode" : 18, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E18.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "label" : "2x18", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "episodeid" : 83, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [], + "episodeid" : 84, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "2x19", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713571" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "episode" : 19, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E19.mp4", + "specialsortseason" : -1 + }, + { + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 20, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E20.mp4", + "uniqueid" : { + "unknown" : "3713581" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "writer" : [], + "episodeid" : 85, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "2x20", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 86, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x21", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E21.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 21, + "plot" : "", + "thumbnail" : "", + "votes" : "0", + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713591" + }, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 10, + "title" : "", + "userrating" : 0 + }, + { + "seasonid" : 10, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713601" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E22.mp4", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 22, + "playcount" : 0, + "plot" : "", + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x22", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 87 + }, + { + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 88, + "writer" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x23", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E23.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "playcount" : 0, + "episode" : 23, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713611" + }, + "runtime" : 3600, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E24.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 24, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713621" + }, + "runtime" : 3600, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 89, + "writer" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "label" : "2x24", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 10, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713631" + }, + "runtime" : 3600, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "episode" : 25, + "plot" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E25.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "label" : "2x25", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "episodeid" : 90, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 0, + "episode" : 26, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E26.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713641" + }, + "runtime" : 3600, + "tvshowid" : 3, + "label" : "2x26", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "episodeid" : 91, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2 + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x27", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 92, + "seasonid" : 10, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "3713651" + }, + "runtime" : 3600, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E27.mp4", + "specialsortseason" : -1, + "votes" : "0", + "thumbnail" : "", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 27, + "plot" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E28.mp4", + "specialsortseason" : -1, + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "episode" : 28, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "3713661" + }, + "runtime" : 3600, + "lastplayed" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 93, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x28", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 94, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x29", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E29.mp4", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "episode" : 29, + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "3713671" + }, + "runtime" : 3600, + "lastplayed" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "" + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "label" : "2x30", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "episodeid" : 95, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713681" + }, + "runtime" : 3600, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 30, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E30.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1 + }, + { + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713691" + }, + "lastplayed" : "", + "tvshowid" : 3, + "episode" : 31, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E31.mp4", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "label" : "2x31", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "writer" : [], + "episodeid" : 96, + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 32, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E32.mp4", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713701" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "writer" : [], + "episodeid" : 97, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "2x32", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713711" + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E33.mp4", + "dateadded" : "2016-08-26 09:16:59", + "episode" : 33, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "2x33", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 98, + "writer" : [] + }, + { + "uniqueid" : { + "unknown" : "3713721" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "", + "episode" : 34, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E34.mp4", + "specialsortseason" : -1, + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [], + "episodeid" : 99, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "2x34", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [] + }, + { + "episodeid" : 100, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "2x35", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "episode" : 35, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E35.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713731" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10 + }, + { + "label" : "2x36", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "episodeid" : 101, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 36, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E36.mp4", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713741" + }, + "runtime" : 3600, + "tvshowid" : 3 + }, + { + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713751" + }, + "runtime" : 3600, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E37.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 37, + "playcount" : 0, + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 102, + "writer" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x37" + }, + { + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "", + "playcount" : 0, + "episode" : 38, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E38.mp4", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 10, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "3713761" + }, + "lastplayed" : "", + "tvshowid" : 3, + "label" : "2x38", + "director" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "writer" : [], + "episodeid" : 103, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2 + }, + { + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 104, + "writer" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "label" : "2x39", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E39.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "episode" : 39, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713771" + }, + "runtime" : 3600, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 10, + "title" : "", + "userrating" : 0 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "", + "playcount" : 0, + "episode" : 40, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E40.mp4", + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713781" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 10, + "episodeid" : 105, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "2x40", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 2/S2E41.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "plot" : "Igennem de sidste 10 uger har 40 kendte danskere på skift inviteret hinanden på middag og underholdning hjemme i privaten i \"4-Stjerners Middag\" på Kanal 5. I hver gruppe har deltagerne givet hinanden point for indsatsen, og den, der har fået flest point, er gået direkte videre til finalen. De 10 finalister bliver sat på en hård prøve, når de skal kæmpe om at nå til tops i kokke-konkurrencen, men der bliver også tid til sjove gensyn og festlige indslag undervejs.Blandt de 10 kampklare finalister kan seerne glæde sig til at se, om verdensmesteren i taekwondo Lisa Lents er ligeså god til at svinge gryder og pander som til at nedlægge sine modstandere. Se også om Pia Rosholm serverer Robinson-karkelakker til forret, om Henning 'Kims' Jacobsen igen serverer chips til alle retterne, og om Jessica Sky har taget sine egne frugter med. I finalen kan seerne desuden glæde sig til at møde skuespiller Finn Nielsen, psykoterapeut Jill Liv Nielsen, violinist Kim Sjøgren, indretningsekspert Jannik Martensen-Larsen, samt endnu to finalister som ikke er offentliggjort. Rammerne om finalen er den eksklusive køkken- og møbelbutik CPH Square, hvor de 10 kendisser mødes i et underholdende og krævende udskillelsesløb. Først skal de, på afmålt tid, præsentere deres bedste bud på en kold forret, de selv har haft mulighed for at bestemme. Efter forretten bliver de 10 finalister skåret ned til seks, som alle skal kreere en hovedret udfra råvarer, de får udleveret af Thomas Rode. Efter denne runde står kun tre kombattanter tilbage til at møde den sidste og afgørende udfordring, desserten, som viser sig som en noget anderledes udfordring!", + "episode" : 41, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "3713791" + }, + "runtime" : 3600, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "title" : "Finalen", + "userrating" : 0, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 106, + "writer" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "2x41. Finalen", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E1.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "plot" : "", + "episode" : 1, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "seasonid" : 11, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172135" + }, + "lastplayed" : "", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "3x01", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 107, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "seasonid" : 11, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4172136" + }, + "runtime" : 3600, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E2.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "playcount" : 0, + "episode" : 2, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "3x02", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 108, + "writer" : [] + }, + { + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172137" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 11, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "plot" : "", + "episode" : 3, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E3.mp4", + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [], + "episodeid" : 109, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "label" : "3x03", + "director" : [], + "firstaired" : "1969-12-31", + "cast" : [] + }, + { + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4172138" + }, + "runtime" : 3600, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E4.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "episode" : 4, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "3x04", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 110, + "writer" : [] + }, + { + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172139" + }, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "title" : "", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E5.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 5, + "thumbnail" : "", + "votes" : "0", + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 111, + "writer" : [], + "director" : [], + "firstaired" : "1969-12-31", + "cast" : [], + "label" : "3x05" + }, + { + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "title" : "", + "userrating" : 0, + "tvshowid" : 3, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4172140" + }, + "runtime" : 3600, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E6.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "plot" : "", + "episode" : 6, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "label" : "3x06", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "episodeid" : 112, + "writer" : [] + }, + { + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172141" + }, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 7, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "", + "votes" : "0", + "thumbnail" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E7.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "label" : "3x07", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "episodeid" : 113, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4172142" + }, + "runtime" : 3600, + "tvshowid" : 3, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 8, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E8.mp4", + "specialsortseason" : -1, + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 114, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "3x08", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [] + }, + { + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [], + "episodeid" : 115, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "3x09", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172143" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 11, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "plot" : "", + "playcount" : 0, + "episode" : 9, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E9.mp4" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 10, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E10.mp4", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172144" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 11, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "writer" : [], + "episodeid" : 116, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "3x10", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "label" : "3x11", + "firstaired" : "1969-12-31", + "cast" : [], + "director" : [], + "writer" : [], + "episodeid" : 117, + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "thumbnail" : "", + "votes" : "0", + "episode" : 11, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "plot" : "", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E11.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "", + "seasonid" : 11, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "4172145" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3 + }, + { + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "episodeid" : 118, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "label" : "3x12", + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E12.mp4", + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "episode" : 12, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "tvshowid" : 3, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172146" + }, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 11, + "title" : "", + "userrating" : 0 + }, + { + "label" : "3x13", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "episodeid" : 119, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "episode" : 13, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E13.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4172147" + }, + "runtime" : 3600, + "tvshowid" : 3 + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E14.mp4", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "playcount" : 0, + "episode" : 14, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "4172148" + }, + "runtime" : 3600, + "lastplayed" : "", + "seasonid" : 11, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 120, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "3x14", + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "3x15", + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "writer" : [], + "episodeid" : 121, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E15.mp4", + "thumbnail" : "", + "votes" : "0", + "plot" : "", + "episode" : 15, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "seasonid" : 11, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "4172149" + }, + "runtime" : 3600, + "lastplayed" : "" + }, + { + "writer" : [], + "episodeid" : 122, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "3x16", + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "", + "votes" : "0", + "episode" : 16, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E16.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "4172150" + }, + "runtime" : 3600, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 11, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "" + }, + { + "title" : "", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 11, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172151" + }, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "", + "episode" : 17, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E17.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3, + "label" : "3x17", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "episodeid" : 123, + "writer" : [], + "rating" : 0, + "showtitle" : "4 Stjerners Middag" + }, + { + "title" : "", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 11, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172152" + }, + "tvshowid" : 3, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "", + "episode" : 18, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E18.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "label" : "3x18", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "episodeid" : 124, + "writer" : [], + "showtitle" : "4 Stjerners Middag", + "rating" : 0 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [], + "firstaired" : "1969-12-31", + "director" : [], + "label" : "3x19", + "showtitle" : "4 Stjerners Middag", + "rating" : 0, + "writer" : [], + "episodeid" : 125, + "seasonid" : 11, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "userrating" : 0, + "title" : "", + "tvshowid" : 3, + "uniqueid" : { + "unknown" : "4172153" + }, + "runtime" : 3600, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E19.mp4", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "", + "episode" : 19, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + } + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "plot" : "", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 20, + "votes" : "0", + "thumbnail" : "", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/Season 3/S3E20.mp4", + "specialsortseason" : -1, + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4172154" + }, + "lastplayed" : "", + "tvshowid" : 3, + "userrating" : 0, + "title" : "", + "seasonid" : 11, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "productioncode" : "", + "writer" : [], + "episodeid" : 126, + "rating" : 0, + "showtitle" : "4 Stjerners Middag", + "label" : "3x20", + "director" : [], + "cast" : [], + "firstaired" : "1969-12-31", + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "lastplayed" : "2017-01-17 17:11:54", + "uniqueid" : { + "unknown" : "5387592" + }, + "runtime" : 12, + "tvshowid" : 1, + "title" : "The Rabbit Hole", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5387592.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 3, + "streamdetails" : { + "subtitle" : [], + "video" : [ + { + "language" : "", + "codec" : "avc1", + "aspect" : 1.33333301544189, + "height" : 360, + "width" : 480, + "duration" : 12, + "stereomode" : "" + } + ], + "audio" : [ + { + "codec" : "aac", + "language" : "und", + "channels" : 2 + } + ] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:17:01", + "votes" : "16", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5387592.jpg/", + "plot" : "Jake Epping is burned out and lost. His ex-wife has moved on, his students are always distracted, and his novel went nowhere. Then one of his dearest friends, Al Templeton, shows him the rabbit hole, a secret time portal that leads back to 1960. Al asks Jake to head back to the past and create a better world by stopping the Kennedy assassination. Jake heads down the rabbit hole to begin his mission but finds that changing the past is far more dangerous than he ever would have dreamed.", + "episode" : 1, + "playcount" : 1, + "ratings" : { + "default" : { + "votes" : 16, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E1.mp4", + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 1, + "writer" : [ + "Bridget Carpenter" + ], + "showtitle" : "11.22.63", + "rating" : 7.90000009536743, + "label" : "1x01. The Rabbit Hole", + "cast" : [ + { + "role" : "Jake Epping", + "name" : "James Franco", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/" + }, + { + "name" : "Sarah Gadon", + "role" : "Sadie Dunhill", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "order" : 1 + }, + { + "name" : "Chris Cooper", + "role" : "Al Templeton", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/" + }, + { + "name" : "Leon Rippy", + "role" : "Harry Dunning", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3 + }, + { + "name" : "Kevin J. O'Connor", + "role" : "Yellow Card Man", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "name" : "George MacKay", + "role" : "Bill Turcotte" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "role" : "Lee Harvey Oswald", + "name" : "Daniel Webber" + }, + { + "role" : "Johnny Clayton", + "name" : "T.R. Knight", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/", + "order" : 7 + }, + { + "name" : "Cherry Jones", + "role" : "Marquerite Oswald", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "order" : 9, + "role" : "Marina Oswald", + "name" : "Lucy Fry" + }, + { + "name" : "Josh Duhamel", + "role" : "Frank Dunning", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/", + "order" : 10 + }, + { + "order" : 22, + "name" : "Johny Coyne", + "role" : "George de Mohrenschildt" + }, + { + "role" : "Deke Simmons", + "name" : "Nick Searcy", + "order" : 23, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/" + } + ], + "firstaired" : "2016-02-15", + "director" : [ + "Kevin Macdonald" + ] + }, + { + "userrating" : 0, + "title" : "The Kill Floor", + "seasonid" : 3, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482169.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/" + }, + "runtime" : 12, + "uniqueid" : { + "unknown" : "5482169" + }, + "lastplayed" : "2017-02-28 11:14:40", + "tvshowid" : 1, + "playcount" : 2, + "plot" : "Thrown by the enormity of his goal, Jake decides the one thing he can do to make a real difference is save the family of his friend Harry Dunning. Harry's family was murdered in a small Kentucky town by Harry's out-of-control father, Frank. But does Jake have what it takes to kill a man and what are the consequences of violence, even against someone as dangerous as Frank?", + "ratings" : { + "default" : { + "votes" : 17, + "rating" : 7.59999990463257, + "default" : true + } + }, + "episode" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482169.jpg/", + "votes" : "17", + "dateadded" : "2016-08-26 09:17:01", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E2.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [ + { + "codec" : "h264", + "language" : "und", + "aspect" : 1.33333301544189, + "stereomode" : "", + "height" : 360, + "width" : 480, + "duration" : 12 + } + ], + "audio" : [ + { + "channels" : 2, + "codec" : "aac", + "language" : "und" + } + ] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x02. The Kill Floor", + "director" : [ + "Frederick E.O. Toye" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/", + "name" : "James Franco", + "role" : "Jake Epping" + }, + { + "role" : "Sadie Dunhill", + "name" : "Sarah Gadon", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/", + "role" : "Al Templeton", + "name" : "Chris Cooper" + }, + { + "role" : "Harry Dunning", + "name" : "Leon Rippy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3 + }, + { + "role" : "Yellow Card Man", + "name" : "Kevin J. O'Connor", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/" + }, + { + "name" : "George MacKay", + "role" : "Bill Turcotte", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "order" : 6, + "role" : "Lee Harvey Oswald", + "name" : "Daniel Webber" + }, + { + "role" : "Johnny Clayton", + "name" : "T.R. Knight", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/" + }, + { + "role" : "Marquerite Oswald", + "name" : "Cherry Jones", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "name" : "Lucy Fry", + "role" : "Marina Oswald" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/", + "order" : 10, + "name" : "Josh Duhamel", + "role" : "Frank Dunning" + }, + { + "name" : "Johny Coyne", + "role" : "George de Mohrenschildt", + "order" : 22 + }, + { + "order" : 23, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "name" : "Nick Searcy", + "role" : "Deke Simmons" + } + ], + "firstaired" : "2016-02-22", + "writer" : [ + "Bridget Carpenter" + ], + "episodeid" : 2, + "showtitle" : "11.22.63", + "rating" : 7.59999990463257 + }, + { + "label" : "1x03. Other Voices, Other Rooms", + "cast" : [ + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/", + "order" : 0, + "name" : "James Franco", + "role" : "Jake Epping" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "name" : "Sarah Gadon", + "role" : "Sadie Dunhill" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/", + "order" : 2, + "name" : "Chris Cooper", + "role" : "Al Templeton" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "role" : "Harry Dunning", + "name" : "Leon Rippy" + }, + { + "role" : "Yellow Card Man", + "name" : "Kevin J. O'Connor", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "order" : 5, + "role" : "Bill Turcotte", + "name" : "George MacKay" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "name" : "Daniel Webber", + "role" : "Lee Harvey Oswald" + }, + { + "role" : "Johnny Clayton", + "name" : "T.R. Knight", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/" + }, + { + "name" : "Cherry Jones", + "role" : "Marquerite Oswald", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/", + "order" : 8 + }, + { + "name" : "Lucy Fry", + "role" : "Marina Oswald", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "order" : 9 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/", + "role" : "Frank Dunning", + "name" : "Josh Duhamel" + }, + { + "order" : 22, + "name" : "Johny Coyne", + "role" : "George de Mohrenschildt" + }, + { + "role" : "Deke Simmons", + "name" : "Nick Searcy", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "order" : 23 + } + ], + "firstaired" : "2016-02-29", + "director" : [ + "James Strong" + ], + "episodeid" : 3, + "writer" : [ + "Brian Nelson" + ], + "showtitle" : "11.22.63", + "rating" : 7.5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:17:01", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482170.jpg/", + "votes" : "17", + "episode" : 3, + "plot" : "Jake finds an unlikely ally in his quest in local drifter Bill Turcote. He gets a teaching job in a small town near Dallas and discovers romantic sparks with school librarian Sadie Dunhill. Jake constructs a double life - spying at night on Lee Harvey Oswald as the potential assassin within Jake builds. Trailing Oswald takes Jake into the dark side of Dallas, where he realizes Oswald may not be the only threat Kennedy will have to face.", + "ratings" : { + "default" : { + "votes" : 17, + "rating" : 7.5, + "default" : true + } + }, + "playcount" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E3.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "channels" : 2, + "codec" : "aac", + "language" : "und" + } + ], + "video" : [ + { + "aspect" : 1.33333301544189, + "codec" : "avc1", + "language" : "", + "stereomode" : "", + "width" : 480, + "height" : 360, + "duration" : 12 + } + ] + }, + "specialsortepisode" : -1, + "title" : "Other Voices, Other Rooms", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482170.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/" + }, + "productioncode" : "", + "seasonid" : 3, + "lastplayed" : "2017-01-17 17:40:12", + "uniqueid" : { + "unknown" : "5482170" + }, + "runtime" : 12, + "tvshowid" : 1 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "streamdetails" : { + "video" : [ + { + "aspect" : 1.33333301544189, + "codec" : "avc1", + "language" : "", + "stereomode" : "", + "width" : 480, + "duration" : 12, + "height" : 360 + } + ], + "audio" : [ + { + "channels" : 2, + "codec" : "aac", + "language" : "und" + } + ], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:17:01", + "votes" : "16", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482171.jpg/", + "playcount" : 1, + "plot" : "Jake and Bill's partnership starts to struggle as they discover more secrets surrounding the unpredictable Lee Harvey Oswald. The conspiracy involving Oswald deepens, while romance blooms for Jake and Sadie. But by becoming involved with an innocent bystander, has Jake placed his new love in danger?", + "episode" : 4, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.59999990463257, + "votes" : 16 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E4.mp4", + "specialsortseason" : -1, + "lastplayed" : "2017-01-18 08:00:06", + "uniqueid" : { + "unknown" : "5482171" + }, + "runtime" : 12, + "tvshowid" : 1, + "title" : "The Eyes of Texas", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482171.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/" + }, + "seasonid" : 3, + "episodeid" : 4, + "writer" : [ + "Bridget Carpenter" + ], + "showtitle" : "11.22.63", + "rating" : 7.59999990463257, + "label" : "1x04. The Eyes of Texas", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/", + "name" : "James Franco", + "role" : "Jake Epping" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "order" : 1, + "role" : "Sadie Dunhill", + "name" : "Sarah Gadon" + }, + { + "name" : "Chris Cooper", + "role" : "Al Templeton", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/" + }, + { + "name" : "Leon Rippy", + "role" : "Harry Dunning", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4, + "role" : "Yellow Card Man", + "name" : "Kevin J. O'Connor" + }, + { + "role" : "Bill Turcotte", + "name" : "George MacKay", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "order" : 5 + }, + { + "role" : "Lee Harvey Oswald", + "name" : "Daniel Webber", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "order" : 6 + }, + { + "name" : "T.R. Knight", + "role" : "Johnny Clayton", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/" + }, + { + "name" : "Cherry Jones", + "role" : "Marquerite Oswald", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/", + "order" : 8 + }, + { + "role" : "Marina Oswald", + "name" : "Lucy Fry", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "order" : 9 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/", + "role" : "Frank Dunning", + "name" : "Josh Duhamel" + }, + { + "order" : 22, + "name" : "Johny Coyne", + "role" : "George de Mohrenschildt" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "order" : 23, + "role" : "Deke Simmons", + "name" : "Nick Searcy" + } + ], + "firstaired" : "2016-03-07", + "director" : [ + "Frederick E.O. Toye" + ], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "showtitle" : "11.22.63", + "rating" : 7.90000009536743, + "writer" : [ + "Bridget Carpenter" + ], + "episodeid" : 5, + "director" : [ + "James Franco" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Juliette Angelo" + }, + { + "order" : 1, + "name" : "Tonya Pinkins", + "role" : "" + }, + { + "role" : "", + "name" : "Sarah White", + "order" : 2 + }, + { + "role" : "Jake Epping", + "name" : "James Franco", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "order" : 1, + "role" : "Sadie Dunhill", + "name" : "Sarah Gadon" + }, + { + "role" : "Al Templeton", + "name" : "Chris Cooper", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3, + "name" : "Leon Rippy", + "role" : "Harry Dunning" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "role" : "Yellow Card Man", + "name" : "Kevin J. O'Connor" + }, + { + "role" : "Bill Turcotte", + "name" : "George MacKay", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "order" : 5 + }, + { + "name" : "Daniel Webber", + "role" : "Lee Harvey Oswald", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/", + "order" : 7, + "role" : "Johnny Clayton", + "name" : "T.R. Knight" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/", + "name" : "Cherry Jones", + "role" : "Marquerite Oswald" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "order" : 9, + "role" : "Marina Oswald", + "name" : "Lucy Fry" + }, + { + "name" : "Josh Duhamel", + "role" : "Frank Dunning", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/" + }, + { + "role" : "George de Mohrenschildt", + "name" : "Johny Coyne", + "order" : 22 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "order" : 23, + "name" : "Nick Searcy", + "role" : "Deke Simmons" + } + ], + "firstaired" : "2016-03-14", + "label" : "1x05. The Truth", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [ + { + "height" : 360, + "width" : 480, + "duration" : 12, + "stereomode" : "", + "aspect" : 1.33333301544189, + "language" : "", + "codec" : "avc1" + } + ], + "audio" : [ + { + "channels" : 2, + "language" : "und", + "codec" : "aac" + } + ] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E5.mp4", + "specialsortseason" : -1, + "plot" : "Everything begins to fall apart as Jake struggles to live two lives: teacher and time traveler. When Sadie's life is threatened, Jake has to make a terrible choice, leaving Bill to his own devices. Lee Harvey Oswald takes steps that will lead him into a date with destiny.", + "playcount" : 1, + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 14, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482173.jpg/", + "votes" : "14", + "dateadded" : "2016-08-26 09:17:01", + "tvshowid" : 1, + "runtime" : 12, + "uniqueid" : { + "unknown" : "5482173" + }, + "lastplayed" : "2017-01-18 08:00:31", + "seasonid" : 3, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482173.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Truth" + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [ + { + "codec" : "aac", + "language" : "und", + "channels" : 2 + } + ], + "video" : [ + { + "stereomode" : "", + "duration" : 12, + "width" : 480, + "height" : 360, + "language" : "", + "codec" : "avc1", + "aspect" : 1.33333301544189 + } + ], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E6.mp4", + "specialsortseason" : -1, + "playcount" : 1, + "plot" : "It's October 1963, and the gathering storm of threats in Dallas continues to build. Jake must take drastic action to establish the full dimensions of the threat to Kennedy. And amidst it all, he's hit with an unexpected death and a bitter betrayal from one of those closest to him.", + "ratings" : { + "default" : { + "votes" : 15, + "rating" : 7.69999980926514, + "default" : true + } + }, + "episode" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482174.jpg/", + "votes" : "15", + "dateadded" : "2016-08-26 09:17:01", + "tvshowid" : 1, + "runtime" : 12, + "uniqueid" : { + "unknown" : "5482174" + }, + "lastplayed" : "2017-01-18 08:00:32", + "seasonid" : 3, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482174.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Happy Birthday, Lee Harvey Oswald", + "showtitle" : "11.22.63", + "rating" : 7.69999980926514, + "writer" : [ + "Bridget Carpenter" + ], + "episodeid" : 6, + "director" : [ + "John David Coles" + ], + "firstaired" : "2016-03-21", + "cast" : [ + { + "order" : 0, + "name" : "Brooklyn Sudano", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Claire Brosseau" + }, + { + "order" : 2, + "name" : "Miranda Calderon", + "role" : "" + }, + { + "name" : "Shauna MacDonald", + "role" : "", + "order" : 3 + }, + { + "role" : "", + "name" : "Amy Marie Wallace", + "order" : 4 + }, + { + "name" : "James Franco", + "role" : "Jake Epping", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/" + }, + { + "name" : "Sarah Gadon", + "role" : "Sadie Dunhill", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/", + "order" : 2, + "name" : "Chris Cooper", + "role" : "Al Templeton" + }, + { + "name" : "Leon Rippy", + "role" : "Harry Dunning", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3 + }, + { + "name" : "Kevin J. O'Connor", + "role" : "Yellow Card Man", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4 + }, + { + "role" : "Bill Turcotte", + "name" : "George MacKay", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "order" : 6, + "role" : "Lee Harvey Oswald", + "name" : "Daniel Webber" + }, + { + "role" : "Johnny Clayton", + "name" : "T.R. Knight", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/", + "order" : 7 + }, + { + "name" : "Cherry Jones", + "role" : "Marquerite Oswald", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "order" : 9, + "role" : "Marina Oswald", + "name" : "Lucy Fry" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/", + "order" : 10, + "role" : "Frank Dunning", + "name" : "Josh Duhamel" + }, + { + "order" : 22, + "name" : "Johny Coyne", + "role" : "George de Mohrenschildt" + }, + { + "name" : "Nick Searcy", + "role" : "Deke Simmons", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "order" : 23 + } + ], + "label" : "1x06. Happy Birthday, Lee Harvey Oswald", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "label" : "1x07. Soldier Boy", + "director" : [ + "James Kent" + ], + "cast" : [ + { + "name" : "James Franco", + "role" : "Jake Epping", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/", + "order" : 0 + }, + { + "name" : "Brooklyn Sudano", + "role" : "", + "order" : 0 + }, + { + "role" : "Sadie Dunhill", + "name" : "Sarah Gadon", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/" + }, + { + "role" : "", + "name" : "Miranda Calderon", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/", + "role" : "Al Templeton", + "name" : "Chris Cooper" + }, + { + "role" : "", + "name" : "Jen Goodhue", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "role" : "Harry Dunning", + "name" : "Leon Rippy" + }, + { + "role" : "", + "name" : "Marsha Mason", + "order" : 3 + }, + { + "name" : "Kevin J. O'Connor", + "role" : "Yellow Card Man", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4 + }, + { + "role" : "", + "name" : "Kristi Taylor", + "order" : 4 + }, + { + "role" : "Bill Turcotte", + "name" : "George MacKay", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/" + }, + { + "name" : "Daniel Webber", + "role" : "Lee Harvey Oswald", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/", + "name" : "T.R. Knight", + "role" : "Johnny Clayton" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/", + "order" : 8, + "role" : "Marquerite Oswald", + "name" : "Cherry Jones" + }, + { + "role" : "Marina Oswald", + "name" : "Lucy Fry", + "order" : 9, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/", + "order" : 10, + "name" : "Josh Duhamel", + "role" : "Frank Dunning" + }, + { + "order" : 22, + "role" : "George de Mohrenschildt", + "name" : "Johny Coyne" + }, + { + "order" : 23, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "role" : "Deke Simmons", + "name" : "Nick Searcy" + } + ], + "firstaired" : "2016-03-28", + "writer" : [ + "Bridget Carpenter", + "Quinton Peeples" + ], + "episodeid" : 7, + "rating" : 7.80000019073486, + "showtitle" : "11.22.63", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "episode" : 7, + "plot" : "The end is near, and Jake is not up to the task. Sadie scrambles to pick up the pieces, but no one knows the mission as well as Jake. Kennedy and the assassin are on a collision path - but has Jake changed things enough in the past to alter the course of events? The days are counting down as 11.22.63 draws near.", + "playcount" : 1, + "ratings" : { + "default" : { + "votes" : 12, + "rating" : 7.80000019073486, + "default" : true + } + }, + "votes" : "12", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482175.jpg/", + "dateadded" : "2016-08-26 09:17:01", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E7.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "language" : "und", + "codec" : "aac", + "channels" : 2 + } + ], + "video" : [ + { + "codec" : "avc1", + "language" : "", + "aspect" : 1.33333301544189, + "width" : 480, + "height" : 360, + "duration" : 12, + "stereomode" : "" + } + ] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Soldier Boy", + "seasonid" : 3, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482175.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/" + }, + "runtime" : 12, + "uniqueid" : { + "unknown" : "5482175" + }, + "lastplayed" : "2017-02-06 16:23:38", + "tvshowid" : 1 + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x08. The Day in Question", + "director" : [ + "James Strong" + ], + "cast" : [ + { + "role" : "Jake Epping", + "name" : "James Franco", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/", + "order" : 0 + }, + { + "name" : "Constance Towers", + "role" : "", + "order" : 0 + }, + { + "name" : "Sarah Gadon", + "role" : "Sadie Dunhill", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "order" : 1 + }, + { + "order" : 1, + "name" : "Erica Anderson", + "role" : "" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/", + "order" : 2, + "name" : "Chris Cooper", + "role" : "Al Templeton" + }, + { + "order" : 2, + "role" : "", + "name" : "Laura Reeves" + }, + { + "name" : "Leon Rippy", + "role" : "Harry Dunning", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3 + }, + { + "role" : "", + "name" : "Rebecca Gamble", + "order" : 3 + }, + { + "name" : "Kevin J. O'Connor", + "role" : "Yellow Card Man", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4 + }, + { + "role" : "", + "name" : "Brooklyn Sudano", + "order" : 4 + }, + { + "role" : "Bill Turcotte", + "name" : "George MacKay", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "order" : 5 + }, + { + "name" : "Anna Vocino", + "role" : "", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "order" : 6, + "name" : "Daniel Webber", + "role" : "Lee Harvey Oswald" + }, + { + "name" : "T.R. Knight", + "role" : "Johnny Clayton", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/" + }, + { + "name" : "Cherry Jones", + "role" : "Marquerite Oswald", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/" + }, + { + "role" : "Marina Oswald", + "name" : "Lucy Fry", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "order" : 9 + }, + { + "name" : "Josh Duhamel", + "role" : "Frank Dunning", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/" + }, + { + "order" : 22, + "name" : "Johny Coyne", + "role" : "George de Mohrenschildt" + }, + { + "order" : 23, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "name" : "Nick Searcy", + "role" : "Deke Simmons" + } + ], + "firstaired" : "2016-04-04", + "writer" : [ + "Bridget Carpenter" + ], + "episodeid" : 8, + "rating" : 8, + "showtitle" : "11.22.63", + "userrating" : 0, + "title" : "The Day in Question", + "seasonid" : 3, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482176.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/" + }, + "productioncode" : "", + "runtime" : 12, + "uniqueid" : { + "unknown" : "5482176" + }, + "lastplayed" : "2017-02-06 16:36:37", + "tvshowid" : 1, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 10 + } + }, + "plot" : "The past pulls out every weapon it has to keep Jake from reaching Dealey Plaza in time to save Kennedy. If he fails, it could mean death for Jake or others close to him - and if he succeeds, it could create a world in which he loses everything he's ever known. What is the cost of doing the right thing?", + "playcount" : 1, + "episode" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f301824%2f5482176.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:17:01", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/Season 1/S1E8.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "channels" : 2, + "codec" : "aac", + "language" : "und" + } + ], + "video" : [ + { + "width" : 480, + "height" : 360, + "duration" : 12, + "stereomode" : "", + "aspect" : 1.33333301544189, + "language" : "", + "codec" : "avc1" + } + ] + }, + "specialsortepisode" : -1 + }, + { + "label" : "1x01. Mexican Slayride (1)", + "director" : [ + "Rod Holcomb" + ], + "cast" : [ + { + "name" : "Tim Dunigan", + "role" : "", + "order" : 0 + }, + { + "name" : "Sergio Calderon", + "role" : "", + "order" : 1 + }, + { + "name" : "William Windom", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Enrique Lucero", + "role" : "" + }, + { + "name" : "Jorge Zepeda", + "role" : "", + "order" : 4 + }, + { + "name" : "William Lucking", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 5 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-01-23", + "episodeid" : 2895, + "writer" : [ + "Frank Lupo", + "Stephen J. Cannell" + ], + "showtitle" : "The A-Team", + "rating" : 8.19999980926514, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "A desperate, but ambitious newspaper reporter, Amy Allen, wants to prove the existence of the A-Team, four ex GIs that help people in need. When she finds them she hires them, because her co-worker Al Massey is missing in Mexico.", + "episode" : 1, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.19999980926514, + "votes" : 12 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262768.jpg/", + "votes" : "12", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E1.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "title" : "Mexican Slayride (1)", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262768.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 553, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262768" + }, + "tvshowid" : 137 + }, + { + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "435747" + }, + "tvshowid" : 137, + "title" : "Mexican Slayride (2)", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f435747.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "productioncode" : "", + "seasonid" : 553, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "episode" : 2, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.19999980926514, + "votes" : 5 + } + }, + "plot" : "Part 2 of the pilot episode in which the A-Team have been captured by a group of guerillas and the gang leader they were sent to fight. In the final battle they are assisted by the villagers and with their help, the A-Team is able to overthrow the guerillas, save the reporter and make their way home. Once home, Amy Allen blackmails her way onto the team.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f435747.jpg/", + "votes" : "5", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E2.mp4", + "specialsortseason" : -1, + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 2896, + "writer" : [ + "Frank Lupo", + "Stephen J. Cannell" + ], + "rating" : 8.19999980926514, + "showtitle" : "The A-Team", + "label" : "1x02. Mexican Slayride (2)", + "director" : [ + "Rod Holcomb" + ], + "cast" : [ + { + "order" : 0, + "name" : "Tim Dunigan", + "role" : "" + }, + { + "role" : "", + "name" : "Sergio Calderon", + "order" : 1 + }, + { + "role" : "", + "name" : "William Windom", + "order" : 2 + }, + { + "name" : "Enrique Lucero", + "role" : "", + "order" : 3 + }, + { + "name" : "Jorge Zepeda", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 5 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-01-23" + }, + { + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262769.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 553, + "title" : "Children of Jamestown", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262769" + }, + "runtime" : 2700, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E3.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "14", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262769.jpg/", + "playcount" : 0, + "plot" : "After the A-Team rescues a girl from a crazed cult leader, they are captured by the man's followers and made the quarry of a death hunt.", + "episode" : 3, + "ratings" : { + "default" : { + "votes" : 14, + "rating" : 7.59999990463257, + "default" : true + } + }, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "firstaired" : "1983-01-30", + "cast" : [ + { + "role" : "", + "name" : "John Saxon", + "order" : 0 + }, + { + "role" : "", + "name" : "Ron Hayes", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Gerrit Graham" + }, + { + "order" : 3, + "role" : "", + "name" : "Carol Jones" + }, + { + "name" : "Fred Learner", + "role" : "", + "order" : 4 + }, + { + "name" : "Bill Watson", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "name" : "Victoria Lucas", + "role" : "" + }, + { + "role" : "", + "name" : "Sherilyn Wolter", + "order" : 7 + }, + { + "name" : "John Carter", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Dean Wein" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [ + "Christian I. Nyby II" + ], + "label" : "1x03. Children of Jamestown", + "showtitle" : "The A-Team", + "rating" : 7.59999990463257, + "episodeid" : 2897, + "writer" : [ + "Stephen J. Cannell" + ] + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E4.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262770.jpg/", + "votes" : "8", + "playcount" : 0, + "plot" : "B.A.'s friend is held in a prison where the warden holds fight-to-the-death-boxing matches whose winner receives short-lived freedom.", + "episode" : 4, + "ratings" : { + "default" : { + "rating" : 7.30000019073486, + "default" : true, + "votes" : 8 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262770" + }, + "runtime" : 2700, + "lastplayed" : "", + "seasonid" : 553, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262770.jpg/" + }, + "userrating" : 0, + "title" : "Pros and Cons", + "showtitle" : "The A-Team", + "rating" : 7.30000019073486, + "writer" : [ + "Stephen J. Cannell" + ], + "episodeid" : 2898, + "cast" : [ + { + "role" : "", + "name" : "Meeno Peluce", + "order" : 0 + }, + { + "role" : "", + "name" : "William Smith", + "order" : 1 + }, + { + "name" : "Clifton James", + "role" : "", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2factie%2fJames%20Bond%2f.actors%2fClifton_James.jpg/" + }, + { + "role" : "", + "name" : "Paul Koslo", + "order" : 3 + }, + { + "role" : "", + "name" : "Red West", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Ken Norton" + }, + { + "name" : "Hugh Gillin", + "role" : "", + "order" : 6 + }, + { + "role" : "", + "name" : "Michael Greene", + "order" : 7 + }, + { + "role" : "", + "name" : "Elsa Raven", + "order" : 8 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-02-08", + "director" : [ + "Ron Satloff" + ], + "label" : "1x04. Pros and Cons", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262771.jpg/", + "votes" : "8", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 8, + "rating" : 7.09999990463257, + "default" : true + } + }, + "plot" : "Hannibal plays cat and mouse with a renegade S.W.A.T. A-Team that's committing murders for hire.", + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E5.mp4", + "uniqueid" : { + "unknown" : "262771" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "A Small and Deadly War", + "seasonid" : 553, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262771.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "writer" : [ + "Frank Lupo" + ], + "episodeid" : 2899, + "showtitle" : "The A-Team", + "rating" : 7.09999990463257, + "label" : "1x05. A Small and Deadly War", + "firstaired" : "1983-02-15", + "cast" : [ + { + "order" : 0, + "name" : "Jack Ging", + "role" : "" + }, + { + "role" : "", + "name" : "Dean Stockwell", + "order" : 1 + }, + { + "name" : "Norman Allen", + "role" : "", + "order" : 2 + }, + { + "name" : "Al White", + "role" : "", + "order" : 3 + }, + { + "role" : "", + "name" : "Fil Formicola", + "order" : 4 + }, + { + "name" : "Carol Baxter", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Ismael 'East' Carlo", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Lew Palter" + }, + { + "name" : "Rhonda Shear", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "name" : "David Morick", + "role" : "" + }, + { + "order" : 10, + "role" : "", + "name" : "Connie Downing" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "director" : [ + "Ron Satlof" + ], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "uniqueid" : { + "unknown" : "262772" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Black Day at Bad Rock", + "seasonid" : 553, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262772.jpg/" + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262772.jpg/", + "votes" : "8", + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 7.59999990463257 + } + }, + "playcount" : 0, + "plot" : "While treating a seriously wounded B.A., a suspicious small town doctor notifies the sheriff, who fears that B.A. may be part of a biker gang returning to free its jailed leader.", + "episode" : 6, + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E6.mp4", + "specialsortseason" : -1, + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [ + "Patrick Hasburgh" + ], + "episodeid" : 2900, + "showtitle" : "The A-Team", + "rating" : 7.59999990463257, + "label" : "1x06. Black Day at Bad Rock", + "firstaired" : "1983-02-22", + "cast" : [ + { + "name" : "Ed Lauter", + "role" : "", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fEd_Lauter.jpg/" + }, + { + "order" : 1, + "name" : "Tricia O'Neill", + "role" : "" + }, + { + "role" : "", + "name" : "John Dennis Johnston", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Sid Haig" + }, + { + "name" : "Ted Gehring", + "role" : "", + "order" : 4 + }, + { + "name" : "William Frankfather", + "role" : "", + "order" : 5 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "director" : [ + "Christian I. Nyby II" + ] + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262773" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "The Rabbit Who Ate Las Vegas", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262773.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 553, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "5", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262773.jpg/", + "plot" : "The A-Team gets involved in a mob power play when two girls ask them to find their college professor who went to Las Vegas with a perfect gambling system and never came back.", + "episode" : 7, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 5, + "default" : true, + "rating" : 7 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E7.mp4", + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 2901, + "writer" : [ + "Frank Lupo" + ], + "rating" : 7, + "showtitle" : "The A-Team", + "label" : "1x07. The Rabbit Who Ate Las Vegas", + "cast" : [ + { + "name" : "Charles Cioffi", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Richard Romanus" + }, + { + "name" : "Tracy Scoggins", + "role" : "", + "order" : 2 + }, + { + "name" : "Terence McGovern", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Luke Andrews" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1983-03-01", + "director" : [ + "Bruce Kessler" + ] + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E8.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "6", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262774.jpg/", + "plot" : "The A-Team takes up the cause of New York shopkeepers against neighborhood protection racketeers.", + "episode" : 8, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 6, + "default" : true, + "rating" : 7.5 + } + }, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262774" + }, + "runtime" : 2700, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262774.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/" + }, + "seasonid" : 553, + "title" : "The Out-of-Towners", + "userrating" : 0, + "rating" : 7.5, + "showtitle" : "The A-Team", + "episodeid" : 2902, + "writer" : [ + "Frank Lupo" + ], + "firstaired" : "1983-03-15", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2factie%2fJames%20Bond%2f.actors%2fYaphet_Kotto.jpg/", + "role" : "", + "name" : "Yaphet Kotto" + }, + { + "role" : "", + "name" : "Albert Popwell", + "order" : 1 + }, + { + "name" : "Robert Tessier", + "role" : "", + "order" : 2 + }, + { + "name" : "Wendy Hoffman", + "role" : "", + "order" : 3 + }, + { + "name" : "Billy Jayne", + "role" : "", + "order" : 4 + }, + { + "name" : "Priscilla Pointer", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Jack Kruschen", + "order" : 6 + }, + { + "order" : 7, + "name" : "J. Jay Saunders", + "role" : "" + }, + { + "role" : "", + "name" : "Martin Garner", + "order" : 8 + }, + { + "order" : 9, + "name" : "Peter Iacangelo", + "role" : "" + }, + { + "order" : 10, + "role" : "", + "name" : "Joni Demarest" + }, + { + "role" : "", + "name" : "Howard Vann", + "order" : 11 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "director" : [ + "Chuck Bowman" + ], + "label" : "1x08. The Out-of-Towners", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 2903, + "writer" : [ + "Babs Greyhosky" + ], + "rating" : 8, + "showtitle" : "The A-Team", + "label" : "1x09. Holiday in the Hills", + "director" : [ + "Arnold Laven" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Edward Winter" + }, + { + "name" : "Bill McKinney", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Denise Galik-Furey", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Philip Sterling" + }, + { + "order" : 4, + "role" : "", + "name" : "Mickey Jones" + }, + { + "order" : 5, + "role" : "", + "name" : "James Beach" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-03-22", + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262775" + }, + "tvshowid" : 137, + "title" : "Holiday in the Hills", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262775.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "seasonid" : 553, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "ratings" : { + "default" : { + "votes" : 6, + "rating" : 8, + "default" : true + } + }, + "playcount" : 0, + "episode" : 9, + "plot" : "B.A.'s fear of flying is justified when the A-Team's plane crashes in the backwoods where they must battle mountain men to keep a man from being burned at the stake.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262775.jpg/", + "votes" : "6", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E9.mp4", + "specialsortseason" : -1 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [ + "Guy Magar" + ], + "firstaired" : "1983-04-05", + "cast" : [ + { + "role" : "", + "name" : "Stuart Whitman", + "order" : 0 + }, + { + "name" : "Devon Ericson", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Robert Sampson", + "order" : 2 + }, + { + "role" : "", + "name" : "Michael Alldredge", + "order" : 3 + }, + { + "order" : 4, + "name" : "Tom McFadden", + "role" : "" + }, + { + "name" : "Tim Russovich", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "Caskey Swain" + }, + { + "order" : 7, + "role" : "", + "name" : "Jim Boeke" + }, + { + "role" : "", + "name" : "Tim Rossovich", + "order" : 8 + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fmn5Nc5Q31GslpVVWs8p41W4TBma.jpg/", + "order" : 9, + "name" : "Dennis Haysbert", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "label" : "1x10. West Coast Turnaround", + "rating" : 7.59999990463257, + "showtitle" : "The A-Team", + "episodeid" : 2904, + "writer" : [ + "Patrick Hasburgh", + "Stephen J. Cannell" + ], + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262776.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/" + }, + "seasonid" : 553, + "title" : "West Coast Turnaround", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262776" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E10.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "episode" : 10, + "plot" : "The A-Team delivers produce to the market for a farmer who is slowly being driven out of business by a land-hungry rancher.", + "ratings" : { + "default" : { + "votes" : 8, + "rating" : 7.59999990463257, + "default" : true + } + }, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262776.jpg/", + "votes" : "8", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + { + "showtitle" : "The A-Team", + "rating" : 7.69999980926514, + "episodeid" : 2905, + "writer" : [ + "Patrick Hasburgh", + "Frank Lupo" + ], + "director" : [ + "Arnold Laven", + "Babs Greyhosky" + ], + "cast" : [ + { + "name" : "Nico Minardos", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Warren J. Kemmerling" + }, + { + "role" : "", + "name" : "Amy Steel", + "order" : 2 + }, + { + "order" : 3, + "name" : "Alan Fudge", + "role" : "" + }, + { + "order" : 4, + "name" : "Ed Grover", + "role" : "" + }, + { + "role" : "", + "name" : "Danny Wells", + "order" : 5 + }, + { + "role" : "", + "name" : "Barbara Horan", + "order" : 6 + }, + { + "role" : "", + "name" : "Dennis Haysbert", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fmn5Nc5Q31GslpVVWs8p41W4TBma.jpg/", + "order" : 7 + }, + { + "order" : 8, + "name" : "Casey King", + "role" : "" + }, + { + "order" : 9, + "role" : "", + "name" : "Patrick Cameron" + }, + { + "name" : "Rick Fitts", + "role" : "", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Robert Madrid" + }, + { + "name" : "Judd Omen", + "role" : "", + "order" : 12 + }, + { + "name" : "William Lucking", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 13 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1983-04-12", + "label" : "1x11. One More Time", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E11.mp4", + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "The US government recruits the A-Team to rescue a general and his daughter from guerillas in Borneo.", + "episode" : 11, + "ratings" : { + "default" : { + "votes" : 7, + "rating" : 7.69999980926514, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262777.jpg/", + "votes" : "7", + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262777" + }, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262777.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/" + }, + "seasonid" : 553, + "title" : "One More Time", + "userrating" : 0 + }, + { + "label" : "1x12. Till Death Do Us Part", + "director" : [ + "Guy Magar" + ], + "cast" : [ + { + "role" : "", + "name" : "Janice Heiden", + "order" : 0 + }, + { + "order" : 1, + "name" : "John Erickson", + "role" : "" + }, + { + "order" : 2, + "role" : "", + "name" : "Jim Antonio" + }, + { + "order" : 3, + "name" : "Noble Willingham", + "role" : "" + }, + { + "role" : "", + "name" : "Billy Green Bush", + "order" : 4 + }, + { + "order" : 5, + "name" : "Tony Dale", + "role" : "" + }, + { + "order" : 6, + "name" : "Lesley Woods", + "role" : "" + }, + { + "role" : "", + "name" : "Jenny Neumann", + "order" : 7 + }, + { + "order" : 8, + "name" : "Sy Kramer", + "role" : "" + }, + { + "role" : "", + "name" : "Kenneth White", + "order" : 9 + }, + { + "order" : 10, + "name" : "Jack Garner", + "role" : "" + }, + { + "name" : "Tom Pletts", + "role" : "", + "order" : 11 + }, + { + "order" : 12, + "name" : "Gordon Hurst", + "role" : "" + }, + { + "role" : "", + "name" : "Terrance Bensor", + "order" : 13 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-04-19", + "episodeid" : 2906, + "writer" : [ + "Babs Greyhosky" + ], + "rating" : 7.80000019073486, + "showtitle" : "The A-Team", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "The A-Team has to rescue a reluctant bride being forced to marry her late father's business partner.", + "ratings" : { + "default" : { + "rating" : 7.80000019073486, + "default" : true, + "votes" : 6 + } + }, + "playcount" : 0, + "episode" : 12, + "votes" : "6", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262778.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E12.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "title" : "Till Death Do Us Part", + "userrating" : 0, + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262778.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 553, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262778" + }, + "tvshowid" : 137 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 1/S1E13.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 7, + "rating" : 7.90000009536743, + "default" : true + } + }, + "plot" : "Hannibal's plan to free a hijacked airborne 747 requires a bit of adjustment when B.A. becomes cataleptic and Murdock temporarily blinded.", + "episode" : 13, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262779.jpg/", + "votes" : "7", + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "seasonid" : 553, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262779.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Beast From the Belly of a Boeing", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262779" + }, + "lastplayed" : "", + "director" : [ + "Ron Satloff" + ], + "cast" : [ + { + "name" : "Andrew Robinson", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Alan Stock", + "role" : "" + }, + { + "name" : "Jim McKrell", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Michael Swan", + "role" : "" + }, + { + "role" : "", + "name" : "Jesse D. Goins", + "order" : 4 + }, + { + "name" : "Milt Kogan", + "role" : "", + "order" : 5 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fXander_Berkeley.jpg/", + "order" : 6, + "role" : "", + "name" : "Xander Berkeley" + }, + { + "role" : "", + "name" : "Scott Lincoln", + "order" : 7 + }, + { + "order" : 8, + "name" : "Mary Kate McGeehan", + "role" : "" + }, + { + "order" : 9, + "role" : "", + "name" : "Melvin F. Allen" + }, + { + "role" : "", + "name" : "Tony Brubaker", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Steve Chanmbers" + }, + { + "order" : 12, + "name" : "Wayne Storm", + "role" : "" + }, + { + "order" : 13, + "role" : "", + "name" : "Steve Chambers" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-05-03", + "label" : "1x13. The Beast From the Belly of a Boeing", + "showtitle" : "The A-Team", + "rating" : 7.90000009536743, + "writer" : [ + "Patrick Hasburgh" + ], + "episodeid" : 2907, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "The A-Team agrees to transport explosives to a Zimbabwe diamond mine after the owner dies trying to do it himself.", + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 5, + "default" : true, + "rating" : 8 + } + }, + "votes" : "5", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262781.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E1.mp4", + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262781" + }, + "tvshowid" : 137, + "title" : "Diamonds 'n' Dust", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262781.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "episodeid" : 2908, + "writer" : [ + "Patrick Hasburgh" + ], + "showtitle" : "The A-Team", + "rating" : 8, + "label" : "2x01. Diamonds 'n' Dust", + "director" : [ + "Ron Satloff" + ], + "firstaired" : "1983-09-20", + "cast" : [ + { + "order" : 0, + "name" : "Kristen Meadows", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Michael Halsey" + }, + { + "order" : 2, + "role" : "", + "name" : "Albert Salmi" + }, + { + "name" : "Sam Scarber", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "name" : "Brian Libby", + "role" : "" + }, + { + "name" : "Garnett Smith", + "role" : "", + "order" : 5 + }, + { + "name" : "Peter Elbling", + "role" : "", + "order" : 6 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "showtitle" : "The A-Team", + "rating" : 7.19999980926514, + "episodeid" : 2909, + "writer" : [ + "Stephen J. Cannell" + ], + "cast" : [ + { + "name" : "Tracy Scoggins", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Mako", + "role" : "" + }, + { + "order" : 2, + "name" : "Marjoe Gortner", + "role" : "" + }, + { + "role" : "", + "name" : "John Fujioka", + "order" : 3 + }, + { + "role" : "", + "name" : "Michael Alldredge", + "order" : 4 + }, + { + "name" : "Liam Sullivan", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "John Quade" + }, + { + "role" : "", + "name" : "Robin Strand", + "order" : 7 + }, + { + "order" : 8, + "role" : "", + "name" : "Len Wayland" + }, + { + "order" : 9, + "role" : "", + "name" : "Rebecca Stanley" + }, + { + "order" : 10, + "name" : "Daphne Maxwell Reid", + "role" : "" + }, + { + "name" : "Gene Dynarski", + "role" : "", + "order" : 11 + }, + { + "order" : 12, + "role" : "", + "name" : "Ross Elliott" + }, + { + "order" : 13, + "role" : "", + "name" : "Gerald Berns" + }, + { + "order" : 14, + "role" : "", + "name" : "Steven Whulkinger" + }, + { + "order" : 15, + "role" : "", + "name" : "Shawn Weatherly" + }, + { + "order" : 16, + "role" : "", + "name" : "Bob Hilgenberg" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-09-27", + "director" : [ + "Bernard McEveety" + ], + "label" : "2x02. Recipe for Heavy Bread", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E2.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "6", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262782.jpg/", + "playcount" : 0, + "episode" : 2, + "ratings" : { + "default" : { + "votes" : 6, + "default" : true, + "rating" : 7.19999980926514 + } + }, + "plot" : "The cook from the A-Team's POW camp gives them a tip about a drug deal between the camp's former commander and a prisoner who had sold out to him.", + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262782" + }, + "runtime" : 2700, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262782.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "title" : "Recipe for Heavy Bread", + "userrating" : 0 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "firstaired" : "1983-10-11", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Elizabeth Hoffman" + }, + { + "name" : "Markie Post", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Ismael 'East' Carlo" + }, + { + "role" : "", + "name" : "Beau Starr", + "order" : 3 + }, + { + "role" : "", + "name" : "Deborah Shelton", + "order" : 4 + }, + { + "order" : 5, + "name" : "Don Knight", + "role" : "" + }, + { + "order" : 6, + "name" : "Judd Omen", + "role" : "" + }, + { + "role" : "", + "name" : "Patrick Moore", + "order" : 7 + }, + { + "name" : "Caesar Cordova", + "role" : "", + "order" : 8 + }, + { + "name" : "Larry Duran", + "role" : "", + "order" : 9 + }, + { + "name" : "Tony Brubaker", + "role" : "", + "order" : 10 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "director" : [ + "Christian I. Nyby II" + ], + "label" : "2x03. The Only Church in Town", + "showtitle" : "The A-Team", + "rating" : 7, + "episodeid" : 2910, + "writer" : [ + "Babs Greyhosky" + ], + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262783.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "seasonid" : 554, + "title" : "The Only Church in Town", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262783" + }, + "runtime" : 2700, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E3.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262783.jpg/", + "votes" : "2", + "plot" : "Face convinces the A-Team to take his case when he receives his fraternity pin in a package from Ecuador from a woman who disappeared from his life fifteen years earlier.", + "episode" : 3, + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 7, + "default" : true + } + }, + "playcount" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Richard Christian Matheson" + ], + "episodeid" : 2911, + "rating" : 7.5, + "showtitle" : "The A-Team", + "label" : "2x04. Bad Time on the Border", + "cast" : [ + { + "order" : 0, + "name" : "Jack Ging", + "role" : "" + }, + { + "role" : "", + "name" : "Dennis Lipscomb", + "order" : 1 + }, + { + "role" : "", + "name" : "Joey Aresco", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "David Graf" + }, + { + "order" : 4, + "name" : "Edie Marie Rubio", + "role" : "" + }, + { + "role" : "", + "name" : "Jeffrey Johnson", + "order" : 5 + }, + { + "name" : "Scott Nemes", + "role" : "", + "order" : 6 + }, + { + "role" : "", + "name" : "Carlos Lacamara", + "order" : 7 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-10-18", + "director" : [ + "Bruce Kessler" + ], + "uniqueid" : { + "unknown" : "262784" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Bad Time on the Border", + "seasonid" : 554, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262784.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262784.jpg/", + "plot" : "Hannibal goes undercover as an illegal alien when the A-Team is asked to find a sick woman who was apparently left behind by alien smugglers.", + "ratings" : { + "default" : { + "rating" : 7.5, + "default" : true, + "votes" : 4 + } + }, + "playcount" : 0, + "episode" : 4, + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E4.mp4" + }, + { + "rating" : 6.69999980926514, + "showtitle" : "The A-Team", + "episodeid" : 2912, + "writer" : [ + "Frank Lupo" + ], + "cast" : [ + { + "order" : 0, + "name" : "Richard Yniguez", + "role" : "" + }, + { + "role" : "", + "name" : "Morgan Woodward", + "order" : 1 + }, + { + "order" : 2, + "name" : "Dana Kimmell", + "role" : "" + }, + { + "role" : "", + "name" : "Mills Watson", + "order" : 3 + }, + { + "role" : "", + "name" : "Walter Brooke", + "order" : 4 + }, + { + "order" : 5, + "name" : "Philip Gordon", + "role" : "" + }, + { + "name" : "Alicia Fleer", + "role" : "", + "order" : 6 + }, + { + "name" : "Will Hunt", + "role" : "", + "order" : 7 + }, + { + "role" : "", + "name" : "Anita Merritt", + "order" : 8 + }, + { + "role" : "", + "name" : "Tony Ciccone", + "order" : 9 + }, + { + "order" : 10, + "role" : "", + "name" : "Kevin McBride" + }, + { + "role" : "", + "name" : "Bill Dyer", + "order" : 11 + }, + { + "order" : 12, + "role" : "", + "name" : "Bobby Bass" + }, + { + "order" : 13, + "name" : "Jack Verbois", + "role" : "" + }, + { + "order" : 14, + "name" : "Norman Howell", + "role" : "" + }, + { + "role" : "", + "name" : "Lynn Sheerer", + "order" : 15 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-10-25", + "director" : [ + "Christian I. Nyby II" + ], + "label" : "2x05. When You Comin' Back, Range Rider? (1)", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E5.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262785.jpg/", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 6.69999980926514, + "default" : true, + "votes" : 3 + } + }, + "episode" : 5, + "plot" : "The A-Team must duck their Army pursuers as they try to stop wild horse rustlers.", + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262785" + }, + "runtime" : 2700, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262785.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "title" : "When You Comin' Back, Range Rider? (1)", + "userrating" : 0 + }, + { + "seasonid" : 554, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f435750.jpg/" + }, + "userrating" : 0, + "title" : "When You Comin' Back, Range Rider? (2)", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "435750" + }, + "runtime" : 2700, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E6.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f435750.jpg/", + "votes" : "2", + "playcount" : 0, + "plot" : "With Decker hot on their heels, the A-Team must try and find of evidence of the mustangs’ illegal rustling as quickly as possible, before they are captured themselves. With enemies coming from two sides, it is ultimately up to Murdock to save his friends.", + "episode" : 6, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 2 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [ + { + "order" : 0, + "name" : "Richard Yniguez", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Morgan Woodward" + }, + { + "role" : "", + "name" : "Dana Kimmell", + "order" : 2 + }, + { + "order" : 3, + "name" : "Mills Watson", + "role" : "" + }, + { + "name" : "Walter Brooke", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Philip Gordon", + "order" : 5 + }, + { + "order" : 6, + "name" : "Alicia Fleer", + "role" : "" + }, + { + "order" : 7, + "name" : "Will Hunt", + "role" : "" + }, + { + "order" : 8, + "role" : "", + "name" : "Anita Merritt" + }, + { + "order" : 9, + "name" : "Tony Ciccone", + "role" : "" + }, + { + "order" : 10, + "role" : "", + "name" : "Kevin McBride" + }, + { + "order" : 11, + "name" : "Bill Dyer", + "role" : "" + }, + { + "role" : "", + "name" : "Bobby Bass", + "order" : 12 + }, + { + "order" : 13, + "name" : "Jack Verbois", + "role" : "" + }, + { + "role" : "", + "name" : "Norman Howell", + "order" : 14 + }, + { + "role" : "", + "name" : "Lynn Sheerer", + "order" : 15 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1983-10-25", + "director" : [ + "Christian I. Nyby II" + ], + "label" : "2x06. When You Comin' Back, Range Rider? (2)", + "rating" : 7, + "showtitle" : "The A-Team", + "writer" : [ + "Frank Lupo" + ], + "episodeid" : 2913 + }, + { + "title" : "The Taxicab Wars", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262787.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262787" + }, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "A small cab company hires the A-Team to thwart the sabotage efforts of a larger company trying to run them out of business.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 8 + } + }, + "episode" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262787.jpg/", + "votes" : "8", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E7.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x07. The Taxicab Wars", + "director" : [ + "Gilbert M. Shilton" + ], + "cast" : [ + { + "role" : "", + "name" : "Michael Ironside", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fi3HkCGEnQGJeD0U8WDumO4VH5fU.jpg/" + }, + { + "order" : 1, + "role" : "", + "name" : "Edward Lynch" + }, + { + "name" : "Ernie Hudson", + "role" : "", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fErnie_Hudson.jpg/" + }, + { + "order" : 3, + "name" : "Grey Monaghan", + "role" : "" + }, + { + "order" : 4, + "role" : "", + "name" : "Tom Reese" + }, + { + "name" : "Brion James", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "name" : "Ivor Barry", + "role" : "" + }, + { + "role" : "", + "name" : "Michael Crabtree", + "order" : 9 + }, + { + "name" : "Liz Sheridan", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fprgiajw2LMSuoHOlYqWHKuXPB1U.jpg/", + "order" : 10 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-11-01", + "episodeid" : 2914, + "writer" : [ + "Stephen J. Cannell" + ], + "rating" : 7, + "showtitle" : "The A-Team" + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x08. Labor Pains", + "director" : [ + "Arnold Laven" + ], + "cast" : [ + { + "role" : "", + "name" : "Alan Autry", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "John Vernon" + }, + { + "name" : "Charles Napier", + "role" : "", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "order" : 3, + "name" : "Penny Peyser", + "role" : "" + }, + { + "role" : "", + "name" : "Ted Markland", + "order" : 4 + }, + { + "name" : "Belinda Babash", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "name" : "David Glover", + "role" : "" + }, + { + "order" : 7, + "role" : "", + "name" : "Bob Larkin" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-11-08", + "writer" : [ + "Thomas Szolski", + "Richard Christian Matheson" + ], + "episodeid" : 2915, + "showtitle" : "The A-Team", + "rating" : 7, + "userrating" : 0, + "title" : "Labor Pains", + "seasonid" : 554, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262788.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262788" + }, + "lastplayed" : "", + "tvshowid" : 137, + "playcount" : 0, + "plot" : "The A-Team helps migrant workers to organize against a landowner that is forcing them to live and work under slave-labor conditions.", + "episode" : 8, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 4 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262788.jpg/", + "votes" : "4", + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E8.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1 + }, + { + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262789" + }, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262789.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "seasonid" : 554, + "title" : "There's Always a Catch", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E9.mp4", + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "The A-Team must once again duck Decker as they try to stop an extortionist plaguing a small fishing village.", + "episode" : 9, + "ratings" : { + "default" : { + "votes" : 6, + "default" : true, + "rating" : 7.5 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262789.jpg/", + "votes" : "6", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "The A-Team", + "rating" : 7.5, + "episodeid" : 2916, + "writer" : [ + "Richard Christian Matheson", + "Thomas Szolski" + ], + "director" : [ + "Ron Satloff" + ], + "cast" : [ + { + "order" : 0, + "name" : "Tracy Scoggins", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "John Quade" + }, + { + "order" : 2, + "name" : "Robin Strand", + "role" : "" + }, + { + "role" : "", + "name" : "Len Wayland", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "", + "name" : "Marla Heasley" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-11-15", + "label" : "2x09. There's Always a Catch" + }, + { + "seasonid" : 554, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262790.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "userrating" : 0, + "title" : "Water, Water Everywhere", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262790" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E10.mp4", + "playcount" : 0, + "episode" : 10, + "ratings" : { + "default" : { + "rating" : 6.69999980926514, + "default" : true, + "votes" : 6 + } + }, + "plot" : "A land developer is trying to run three disabled Vietnam vets off the desert property they're renovating.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262790.jpg/", + "votes" : "6", + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [ + "Stanley Ellis", + "Stanley Ellis" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Jim Knaub" + }, + { + "order" : 1, + "name" : "Alan Fudge", + "role" : "" + }, + { + "name" : "Robin Riker", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "John L. Feather" + }, + { + "name" : "R. David Smith", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Michael Rider" + }, + { + "name" : "Roy Jenson", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "William Frankfather", + "role" : "" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1983-11-22", + "label" : "2x10. Water, Water Everywhere", + "rating" : 6.69999980926514, + "showtitle" : "The A-Team", + "writer" : [ + "Jo Swerling", + "Stanley Ellis" + ], + "episodeid" : 2917 + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [ + { + "name" : "Norman Alden", + "role" : "", + "order" : 0 + }, + { + "role" : "", + "name" : "Mary-Margaret Humes", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Ray Giradin" + }, + { + "order" : 3, + "name" : "Michael Baseleon", + "role" : "" + }, + { + "order" : 4, + "role" : "", + "name" : "Tim Russovich" + }, + { + "order" : 5, + "name" : "Carol Baxter", + "role" : "" + }, + { + "name" : "Luke Andrews", + "role" : "", + "order" : 6 + }, + { + "name" : "William Boyett", + "role" : "", + "order" : 7 + }, + { + "role" : "", + "name" : "Michael Alldredge", + "order" : 8 + }, + { + "name" : "Tim Rossovich", + "role" : "", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1983-11-29", + "director" : [ + "Gilbert M. Shilton" + ], + "label" : "2x11. Steel", + "showtitle" : "The A-Team", + "rating" : 6.80000019073486, + "episodeid" : 2918, + "writer" : [ + "Frank Lupo" + ], + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262791.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "title" : "Steel", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262791" + }, + "runtime" : 2700, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E11.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262791.jpg/", + "votes" : "6", + "playcount" : 0, + "plot" : "The A-Team looks into sabotage at a construction site.", + "ratings" : { + "default" : { + "rating" : 6.80000019073486, + "default" : true, + "votes" : 6 + } + }, + "episode" : 11, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "title" : "The White Ballot", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262792.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "seasonid" : 554, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262792" + }, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "episode" : 12, + "playcount" : 0, + "plot" : "Face replaces a candidate who was killed while running for sheriff against a corrupt incumbent, and ends up getting the military after the whole A-Team when his photo is published in the newspaper.", + "ratings" : { + "default" : { + "votes" : 6, + "default" : true, + "rating" : 7.30000019073486 + } + }, + "votes" : "6", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262792.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E12.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "label" : "2x12. The White Ballot", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2factie%2fJames%20Bond%2f.actors%2fClifton_James.jpg/", + "name" : "Clifton James", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Andrew Robinson" + }, + { + "name" : "Joshua Bryant", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Martin Azarow", + "order" : 3 + }, + { + "role" : "", + "name" : "James Lough", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Larry Marko-Ernie" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1983-12-06", + "episodeid" : 2919, + "writer" : [ + "Jeff Ray" + ], + "rating" : 7.30000019073486, + "showtitle" : "The A-Team" + }, + { + "rating" : 7.19999980926514, + "showtitle" : "The A-Team", + "writer" : [ + "Thomas Szolski" + ], + "episodeid" : 2920, + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "role" : "", + "name" : "James Hong", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJames_Hong.jpg/" + }, + { + "order" : 1, + "role" : "", + "name" : "Paul Mantee" + }, + { + "name" : "Peter Kwong", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Keye Luke" + }, + { + "order" : 4, + "role" : "", + "name" : "John Milford" + }, + { + "order" : 5, + "role" : "", + "name" : "Richard Kellman" + }, + { + "order" : 6, + "role" : "", + "name" : "Professor Toru Tanaka" + }, + { + "role" : "", + "name" : "Lydia Lei", + "order" : 7 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1983-12-13", + "label" : "2x13. The Maltese Cow", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E13.mp4", + "playcount" : 0, + "episode" : 13, + "plot" : "Old friends who own a restaurant sponsored by the A-Team face an extortion threat from a Chinese tong.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.19999980926514, + "votes" : 6 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262793.jpg/", + "votes" : "6", + "dateadded" : "2016-08-26 09:16:58", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262793" + }, + "lastplayed" : "", + "seasonid" : 554, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262793.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "userrating" : 0, + "title" : "The Maltese Cow" + }, + { + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262794" + }, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262794.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "title" : "In Plane Sight", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E14.mp4", + "dateadded" : "2016-08-26 09:16:58", + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 6 + } + }, + "playcount" : 0, + "plot" : "The A-Team employs a new method to prepare B.A. for a flight to South America, where drug smugglers are holding an innocent pilot prisoner.", + "episode" : 14, + "votes" : "6", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262794.jpg/", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "The A-Team", + "rating" : 7, + "episodeid" : 2921, + "writer" : [ + "Babs Greyhosky" + ], + "director" : [ + "Tony Mordente" + ], + "firstaired" : "1984-01-03", + "cast" : [ + { + "name" : "Judy Strangis", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Anthony Charnota" + }, + { + "order" : 2, + "name" : "Rod Colbin", + "role" : "" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fwf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg/", + "name" : "Lance Henriksen", + "role" : "" + }, + { + "name" : "Carmen Argenziano", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Bruce French", + "order" : 5 + }, + { + "order" : 6, + "name" : "Grainger Hines", + "role" : "" + }, + { + "order" : 7, + "role" : "", + "name" : "Crofton Hardester" + }, + { + "role" : "", + "name" : "Chad Block", + "order" : 8 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "label" : "2x14. In Plane Sight" + }, + { + "cast" : [ + { + "name" : "Michael Fairman", + "role" : "", + "order" : 0 + }, + { + "name" : "Kurtwood Smith", + "role" : "", + "order" : 1, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fKurtwood_Smith.jpg/" + }, + { + "order" : 2, + "name" : "Randolph Roberts", + "role" : "" + }, + { + "role" : "", + "name" : "Edward Ansara", + "order" : 3 + }, + { + "order" : 4, + "name" : "Ron Meszaros", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1984-01-10", + "director" : [ + "Gilbert M. Shilton" + ], + "label" : "2x15. The Battle of Bel-Air", + "showtitle" : "The A-Team", + "rating" : 7.30000019073486, + "episodeid" : 2922, + "writer" : [ + "Frank Lupo" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E15.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262795.jpg/", + "plot" : "The A-Team must rescue an employee of a security firm after she warns them about an ambush.", + "ratings" : { + "default" : { + "votes" : 8, + "rating" : 7.30000019073486, + "default" : true + } + }, + "episode" : 15, + "playcount" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262795.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "title" : "The Battle of Bel-Air", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262795" + }, + "runtime" : 2700 + }, + { + "writer" : [ + "Richard Christian Matheson", + "Thomas Szollosi" + ], + "episodeid" : 2923, + "showtitle" : "The A-Team", + "rating" : 7.40000009536743, + "label" : "2x16. Say It With Bullets", + "firstaired" : "1984-01-17", + "cast" : [ + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 0, + "name" : "Marla Heasley", + "role" : "" + }, + { + "role" : "", + "name" : "Lauren Chase", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Monte Markham" + }, + { + "order" : 3, + "role" : "", + "name" : "Miguel Fernandes" + }, + { + "order" : 4, + "role" : "", + "name" : "Patrick Brady" + }, + { + "order" : 5, + "name" : "Sam Melville", + "role" : "" + }, + { + "order" : 6, + "role" : "", + "name" : "Christopher Michael Moore" + }, + { + "name" : "Anthony S. Johnson", + "role" : "", + "order" : 7 + }, + { + "name" : "Fred McGrath", + "role" : "", + "order" : 8 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "director" : [ + "Dennis Donnelly" + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "votes" : "5", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262796.jpg/", + "plot" : "A WAC asks the A-Team to investigate the death of her brother, who was involved in arms trafficking at a military base.", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 5, + "default" : true, + "rating" : 7.40000009536743 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E16.mp4", + "uniqueid" : { + "unknown" : "262796" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Say It With Bullets", + "seasonid" : 554, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262796.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "productioncode" : "" + }, + { + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "The A-Team helps a southern minister stop the manufacture of lethal moonshine.", + "episode" : 17, + "ratings" : { + "default" : { + "rating" : 7.30000019073486, + "default" : true, + "votes" : 6 + } + }, + "votes" : "6", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262797.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E17.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262797" + }, + "tvshowid" : 137, + "title" : "Pure-Dee Poison", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262797.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "episodeid" : 2924, + "writer" : [ + "Alan Cole", + "Chris Bunch" + ], + "showtitle" : "The A-Team", + "rating" : 7.30000019073486, + "label" : "2x17. Pure-Dee Poison", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "name" : "Tracy Reed", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Steve Sander" + }, + { + "name" : "Tony O'Neill", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "John Amos", + "order" : 3 + }, + { + "order" : 4, + "name" : "Bo Hopkins", + "role" : "" + }, + { + "name" : "Marsha Haynes", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Ed Crick", + "order" : 6 + }, + { + "role" : "", + "name" : "John Roselius", + "order" : 7 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1984-01-31", + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "The sophisticated commando tactics used by a gang for robbing busloads of tourists suggests to the A-Team that they're preparing for a bigger score.", + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 4 + } + }, + "episode" : 18, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262798.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E18.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "title" : "It's a Desert Out There", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262798.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262798" + }, + "tvshowid" : 137, + "label" : "2x18. It's a Desert Out There", + "director" : [ + "Arnold Laven" + ], + "cast" : [ + { + "order" : 0, + "name" : "Jeannie Wilson", + "role" : "" + }, + { + "role" : "", + "name" : "Anthony James", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fIovpB0rm77GljLMLP5S3VW6AAi.jpg/" + }, + { + "order" : 2, + "name" : "Tony Burton", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Robert Dryer" + }, + { + "order" : 4, + "name" : "Parley Baer", + "role" : "" + }, + { + "order" : 5, + "name" : "Peg Stewart", + "role" : "" + }, + { + "name" : "Arnold Turner", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Austin Kelly" + }, + { + "role" : "", + "name" : "Dan Magiera", + "order" : 8 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1984-02-07", + "episodeid" : 2925, + "writer" : [ + "Bruce Cervi" + ], + "rating" : 7, + "showtitle" : "The A-Team", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "5", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262799.jpg/", + "episode" : 19, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 5, + "default" : true, + "rating" : 7.40000009536743 + } + }, + "plot" : "The A-Team uses their own vehicles, Face's Corvette and B.A.'s van, as bait for a car-stealing ring.", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E19.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262799" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Chopping Spree", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262799.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "seasonid" : 554, + "episodeid" : 2926, + "writer" : [ + "Stephen Katz" + ], + "rating" : 7.40000009536743, + "showtitle" : "The A-Team", + "label" : "2x19. Chopping Spree", + "cast" : [ + { + "role" : "", + "name" : "Dennis Franz", + "order" : 0 + }, + { + "role" : "", + "name" : "Lee Patterson", + "order" : 1 + }, + { + "name" : "Liberty Godshail", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Joe Colligan", + "role" : "" + }, + { + "order" : 4, + "name" : "Ken Foree", + "role" : "" + }, + { + "role" : "", + "name" : "Bruce Tuthill", + "order" : 5 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1984-02-14", + "director" : [ + "Michael O'Herlihy" + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [ + "Ivan Dixon" + ], + "firstaired" : "1984-02-21", + "cast" : [ + { + "name" : "Lori Lethin", + "role" : "", + "order" : 0 + }, + { + "role" : "", + "name" : "Kevyn Major Howard", + "order" : 1 + }, + { + "name" : "Steven Keats", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Cherie Midren" + }, + { + "name" : "Anthony De Longis", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Suzzane Albershardt", + "role" : "" + }, + { + "name" : "Frank Annese", + "role" : "", + "order" : 6 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "label" : "2x20. Harder Than it Looks", + "showtitle" : "The A-Team", + "rating" : 7.80000019073486, + "writer" : [ + "Frank Lupo" + ], + "episodeid" : 2927, + "seasonid" : 554, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262800.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "userrating" : 0, + "title" : "Harder Than it Looks", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262800" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E20.mp4", + "plot" : "The rescue of a kidnapping victim looks easy until the ransom is left behind and the victim insists on bringing along one of her captors.", + "episode" : 20, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 4, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262800.jpg/", + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + { + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262801" + }, + "runtime" : 2700, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262801.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "seasonid" : 554, + "title" : "Deadly Maneuvers", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E21.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "5", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262801.jpg/", + "episode" : 21, + "plot" : "Criminals foiled in the past by the A-Team hire a crew of mercenaries to pick off each member one by one.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 8.19999980926514, + "default" : true, + "votes" : 5 + } + }, + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 8.19999980926514, + "showtitle" : "The A-Team", + "episodeid" : 2928, + "writer" : [ + "Richard Christian Matheson", + "Thomas Szolski" + ], + "firstaired" : "1984-02-28", + "cast" : [ + { + "name" : "Ed Lauter", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fEd_Lauter.jpg/", + "order" : 0 + }, + { + "role" : "", + "name" : "Tricia O'Neill", + "order" : 1 + }, + { + "role" : "", + "name" : "Richard Kuss", + "order" : 2 + }, + { + "order" : 3, + "name" : "John G. Scanlon", + "role" : "" + }, + { + "role" : "", + "name" : "Ed Johnson", + "order" : 4 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fMichael_Ensign.jpg/", + "order" : 5, + "name" : "Michael Ensign", + "role" : "" + }, + { + "name" : "Barbara Stock", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Rene Assa" + }, + { + "order" : 8, + "name" : "Michael Cavanaugh", + "role" : "" + }, + { + "name" : "Randy Patrick", + "role" : "", + "order" : 9 + }, + { + "role" : "", + "name" : "John Steadman", + "order" : 10 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "director" : [ + "Mike Vejar" + ], + "label" : "2x21. Deadly Maneuvers" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262802.jpg/", + "plot" : "The A-Team faces an especially challenging mission when their pacifist clients forbid the use of violence against bigots trying to run their community off its land.", + "playcount" : 0, + "episode" : 22, + "ratings" : { + "default" : { + "votes" : 4, + "default" : true, + "rating" : 6.80000019073486 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E22.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262802" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Semi-Friendly Persuasion", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262802.jpg/" + }, + "productioncode" : "", + "seasonid" : 554, + "episodeid" : 2929, + "writer" : [ + "Danny E. Cole" + ], + "showtitle" : "The A-Team", + "rating" : 6.80000019073486, + "label" : "2x22. Semi-Friendly Persuasion", + "cast" : [ + { + "name" : "Geoffrey Lewis", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Tim O'Connor" + }, + { + "name" : "Sam J. Jones", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2ffantasy%2f.actors%2fSam_J._Jones.jpg/", + "order" : 2 + }, + { + "order" : 3, + "name" : "Robby Kiger", + "role" : "" + }, + { + "order" : 4, + "name" : "Frank Luz", + "role" : "" + }, + { + "order" : 5, + "name" : "Red West", + "role" : "" + }, + { + "order" : 6, + "name" : "Lindsay V. Jones", + "role" : "" + }, + { + "role" : "", + "name" : "Ben Rawnsley", + "order" : 7 + }, + { + "order" : 8, + "name" : "Donald Thompson", + "role" : "" + }, + { + "order" : 9, + "name" : "Galen Everhart", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1984-05-08", + "director" : [ + "Craig R. Baxley" + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262803.jpg/", + "votes" : "4", + "plot" : "The A-Team reminisces (via flashbacks) about an injured Murdock as they look for a doctor and try to avoid a pursuing Decker.", + "playcount" : 0, + "episode" : 23, + "ratings" : { + "default" : { + "rating" : 8, + "default" : true, + "votes" : 4 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 2/S2E23.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "title" : "Curtain Call", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262803.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/" + }, + "seasonid" : 554, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262803" + }, + "runtime" : 2700, + "tvshowid" : 137, + "label" : "2x23. Curtain Call", + "cast" : [ + { + "name" : "George Wyner", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fGeorge_Wyner.jpg/", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Danny Wells" + }, + { + "role" : "", + "name" : "Steve Tannen", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Nik Celozzi" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1984-05-15", + "director" : [ + "Dennis Donnelly" + ], + "episodeid" : 2930, + "writer" : [ + "Stephen Katz" + ], + "showtitle" : "The A-Team", + "rating" : 8, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2 + }, + { + "episodeid" : 2931, + "writer" : [ + "Mark Jones" + ], + "rating" : 6.59999990463257, + "showtitle" : "The A-Team", + "label" : "3x01. Bullets and Bikinis", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "order" : 0, + "name" : "Vincent Baggetta", + "role" : "" + }, + { + "role" : "", + "name" : "Kimberly Ross", + "order" : 1 + }, + { + "order" : 2, + "name" : "Betsy Russell", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Ben Piazza" + }, + { + "name" : "Jeanna Tomasino", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Tony Giorgio", + "role" : "" + }, + { + "role" : "", + "name" : "Paul Sylavan", + "order" : 6 + }, + { + "order" : 7, + "name" : "Rick Grassi", + "role" : "" + }, + { + "name" : "Wanda Penalver", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Kelly Andrus" + }, + { + "role" : "", + "name" : "Richard Brose", + "order" : 10 + }, + { + "role" : "", + "name" : "Libby Charlton", + "order" : 11 + }, + { + "order" : 12, + "name" : "Jeana Tomasina", + "role" : "" + }, + { + "role" : "", + "name" : "Paul Sylvan", + "order" : 13 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1984-09-18", + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "ratings" : { + "default" : { + "votes" : 5, + "default" : true, + "rating" : 6.59999990463257 + } + }, + "playcount" : 0, + "plot" : "Two girls ask the A-Team to take over their beachfront hotel after an alleged mobster keeps making bigger and bigger buyout offers that they refuse to take.", + "episode" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262804.jpg/", + "votes" : "5", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E1.mp4", + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262804" + }, + "tvshowid" : 137, + "title" : "Bullets and Bikinis", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262804.jpg/" + }, + "seasonid" : 555 + }, + { + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262805" + }, + "tvshowid" : 137, + "title" : "The Bend in the River (1)", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262805.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "Tawnia asks the A-Team to find her fiancé, an archaeologist last seen on an Amazon expedition that was attacked by a pirate.", + "episode" : 2, + "ratings" : { + "default" : { + "votes" : 4, + "default" : true, + "rating" : 6.80000019073486 + } + }, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262805.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E2.mp4", + "specialsortseason" : -1, + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 2932, + "writer" : [ + "Frank Lupo", + "Stephen J. Cannell" + ], + "showtitle" : "The A-Team", + "rating" : 6.80000019073486, + "label" : "3x02. The Bend in the River (1)", + "director" : [ + "Michael O'Herlihy" + ], + "cast" : [ + { + "role" : "", + "name" : "Barry Van Dyke", + "order" : 0 + }, + { + "name" : "Marta DuBois", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "name" : "Mike Preston", + "role" : "" + }, + { + "name" : "Sergio Calderon", + "role" : "", + "order" : 3 + }, + { + "name" : "Rafael Campos", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Kai Wulff", + "role" : "" + }, + { + "role" : "", + "name" : "Richard Moll", + "order" : 6 + }, + { + "role" : "", + "name" : "Don Pedro Golly", + "order" : 7 + }, + { + "role" : "", + "name" : "Eric Holland", + "order" : 8 + }, + { + "name" : "Danny Wells", + "role" : "", + "order" : 9 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1984-09-25" + }, + { + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 2933, + "writer" : [ + "Frank Lupo", + "Stephen J. Cannell" + ], + "rating" : 6.5, + "showtitle" : "The A-Team", + "label" : "3x03. The Bend in the River (2)", + "firstaired" : "1984-09-25", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Barry Van Dyke" + }, + { + "order" : 1, + "role" : "", + "name" : "Marta DuBois" + }, + { + "role" : "", + "name" : "Mike Preston", + "order" : 2 + }, + { + "role" : "", + "name" : "Sergio Calderon", + "order" : 3 + }, + { + "role" : "", + "name" : "Rafael Campos", + "order" : 4 + }, + { + "name" : "Kai Wulff", + "role" : "", + "order" : 5 + }, + { + "name" : "Richard Moll", + "role" : "", + "order" : 6 + }, + { + "name" : "Don Pedro Golly", + "role" : "", + "order" : 7 + }, + { + "order" : 8, + "role" : "", + "name" : "Eric Holland" + }, + { + "order" : 9, + "name" : "Danny Wells", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "director" : [ + "Michael O'Herlihy" + ], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262806" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "The Bend in the River (2)", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262806.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "seasonid" : 555, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262806.jpg/", + "ratings" : { + "default" : { + "votes" : 4, + "rating" : 6.5, + "default" : true + } + }, + "plot" : "Tawnia asks the A-Team to find her fiancé, an archaeologist last seen on an Amazon expedition that was attacked by a pirate.", + "episode" : 3, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E3.mp4", + "specialsortseason" : -1 + }, + { + "userrating" : 0, + "title" : "Fire", + "seasonid" : 555, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262807.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "262807" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262807.jpg/", + "votes" : "6", + "ratings" : { + "default" : { + "votes" : 6, + "default" : true, + "rating" : 7 + } + }, + "plot" : "The A-Team faces another Army pursuit as they try to help a small town fire chief compete with a larger rival company.", + "playcount" : 0, + "episode" : 4, + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E4.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3, + "label" : "3x04. Fire", + "cast" : [ + { + "name" : "Paul Gleason", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fPaul_Gleason.jpg/", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Christopher Penrock" + }, + { + "order" : 2, + "name" : "Alan Fudge", + "role" : "" + }, + { + "order" : 3, + "name" : "Buddy Garion", + "role" : "" + }, + { + "name" : "Bradford English", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "W.K. Stratton" + }, + { + "role" : "", + "name" : "Stepfanie Kramer", + "order" : 6 + }, + { + "name" : "Charles Napier", + "role" : "", + "order" : 7, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fjhEu0HyHPbFh3cbIoWGW95ubEK1.jpg/", + "order" : 8, + "name" : "Terrence Evans", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1984-10-02", + "director" : [ + "Tony Mordente" + ], + "writer" : [ + "Stephen Katz" + ], + "episodeid" : 2934, + "showtitle" : "The A-Team", + "rating" : 7 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "ratings" : { + "default" : { + "rating" : 7.09999990463257, + "default" : true, + "votes" : 8 + } + }, + "playcount" : 0, + "plot" : "The A-Team intercedes when a union organizer tries to put a small logging operation out of business.", + "episode" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262808.jpg/", + "votes" : "8", + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E5.mp4", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262808" + }, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Timber!", + "seasonid" : 555, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262808.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Jeff Ray" + ], + "episodeid" : 2935, + "showtitle" : "The A-Team", + "rating" : 7.09999990463257, + "label" : "3x05. Timber!", + "director" : [ + "David Hemmings" + ], + "cast" : [ + { + "role" : "", + "name" : "Joseph Lambie", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Tracy Brooks Swope" + }, + { + "name" : "André Gower", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Ray Beckel", + "role" : "" + }, + { + "role" : "", + "name" : "Art LaFleur", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Wiley Harker" + }, + { + "name" : "Shirley Slatter", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "Cindy Roberts", + "role" : "" + }, + { + "name" : "Beau Starr", + "role" : "", + "order" : 8 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1984-10-16", + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "uniqueid" : { + "unknown" : "262809" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Double Heat", + "seasonid" : 555, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262809.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262809.jpg/", + "votes" : "4", + "plot" : "The A-Team is called in to find an accountant's daughter who has become a pawn in a game between two rival mobsters.", + "playcount" : 0, + "episode" : 6, + "ratings" : { + "default" : { + "rating" : 7.30000019073486, + "default" : true, + "votes" : 4 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E6.mp4", + "specialsortseason" : -1, + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [ + "Stephen Katz" + ], + "episodeid" : 2936, + "showtitle" : "The A-Team", + "rating" : 7.30000019073486, + "label" : "3x06. Double Heat", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Dana Elcar" + }, + { + "name" : "Leah Ayres", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Steven Williams", + "order" : 2 + }, + { + "name" : "Michael Baseleon", + "role" : "", + "order" : 3 + }, + { + "role" : "", + "name" : "Reid Cruickshank", + "order" : 4 + }, + { + "name" : "Brendan Byrne", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "Jason Edwards" + }, + { + "name" : "Christine DeLeise", + "role" : "", + "order" : 7 + }, + { + "order" : 8, + "name" : "Burke Byrnes", + "role" : "" + }, + { + "order" : 9, + "name" : "Rosemarie Thomas", + "role" : "" + }, + { + "name" : "Daniel Greene", + "role" : "", + "order" : 10 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1984-10-23", + "director" : [ + "Craig R. Baxley" + ] + }, + { + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262810" + }, + "runtime" : 2700, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262810.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "title" : "Trouble on Wheels", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E7.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "5", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262810.jpg/", + "episode" : 7, + "plot" : "Hannibal goes undercover in order to investigate employee theft from an auto plant.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 5 + } + }, + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 7.80000019073486, + "showtitle" : "The A-Team", + "episodeid" : 2937, + "writer" : [ + "Mark Jones" + ], + "cast" : [ + { + "role" : "", + "name" : "Joe Santos", + "order" : 0 + }, + { + "name" : "Mills Watson", + "role" : "", + "order" : 1 + }, + { + "name" : "James Luisi", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Denise Pratt", + "order" : 3 + }, + { + "order" : 4, + "name" : "Ken Gibbel", + "role" : "" + }, + { + "role" : "", + "name" : "Daniel Chodos", + "order" : 5 + }, + { + "name" : "Don Recasner", + "role" : "", + "order" : 6 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1984-10-30", + "director" : [ + "Michael O'Herlihy" + ], + "label" : "3x07. Trouble on Wheels" + }, + { + "showtitle" : "The A-Team", + "rating" : 7.40000009536743, + "writer" : [ + "Mark Jones" + ], + "episodeid" : 2938, + "director" : [ + "Michael O'Herlihy" + ], + "cast" : [ + { + "name" : "Raul Drake", + "role" : "", + "order" : 0 + }, + { + "role" : "", + "name" : "James Callahan", + "order" : 1 + }, + { + "order" : 2, + "name" : "Sonny Landham", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Alejandro Garay" + }, + { + "name" : "Diego Palacios", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Loyda Ramos", + "role" : "" + }, + { + "name" : "Gordon Ross", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "William Dyer", + "role" : "" + }, + { + "role" : "", + "name" : "Carole Davis", + "order" : 8 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1984-11-13", + "label" : "3x08. The Island", + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E8.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "episode" : 8, + "plot" : "An Army doctor who once saved B.A.'s life calls in his debt by asking the A-Team to help deal with the thugs who have taken over the tropical island where he has set up a medical practice.", + "ratings" : { + "default" : { + "rating" : 7.40000009536743, + "default" : true, + "votes" : 5 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262811.jpg/", + "votes" : "5", + "dateadded" : "2016-08-26 09:16:58", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262811" + }, + "lastplayed" : "", + "seasonid" : 555, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262811.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "userrating" : 0, + "title" : "The Island" + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "label" : "3x09. Showdown!", + "director" : [ + "James Fargo" + ], + "firstaired" : "1984-11-20", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Morgan Woodward" + }, + { + "order" : 1, + "name" : "D.D. Howard", + "role" : "" + }, + { + "role" : "", + "name" : "Michael DeLano", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "John Carter" + }, + { + "name" : "W.K. Stratton", + "role" : "", + "order" : 4 + }, + { + "name" : "Ben Hammer", + "role" : "", + "order" : 5 + }, + { + "name" : "Xander Berkeley", + "role" : "", + "order" : 6, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fXander_Berkeley.jpg/" + }, + { + "order" : 7, + "role" : "", + "name" : "Joseph de Reda" + }, + { + "name" : "K.C. Winkler", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "name" : "Lynnie Ferguson", + "role" : "" + }, + { + "name" : "William Lucking", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 10 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "writer" : [ + "Milt Rosen" + ], + "episodeid" : 2939, + "showtitle" : "The A-Team", + "rating" : 6.5, + "userrating" : 0, + "title" : "Showdown!", + "seasonid" : 555, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262812.jpg/" + }, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262812" + }, + "lastplayed" : "", + "tvshowid" : 137, + "playcount" : 0, + "episode" : 9, + "plot" : "Col. Lynch stakes out a Wild West show that has been terrorized by a group of A-Team impostors, sure that the real guys won't be able to ignore them.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 6.5, + "votes" : 4 + } + }, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262812.jpg/", + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E9.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "label" : "3x10. Sheriffs of Rivertown", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "name" : "Robert Davi", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Wendy Kilbourne", + "role" : "" + }, + { + "order" : 2, + "name" : "Ismael 'East' Carlo", + "role" : "" + }, + { + "name" : "Ed Gilbert", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "name" : "James Lough", + "role" : "" + }, + { + "order" : 5, + "name" : "Will MacMillan", + "role" : "" + }, + { + "name" : "Curtis Taylor", + "role" : "", + "order" : 6 + }, + { + "name" : "Bryan McGuire", + "role" : "", + "order" : 7 + }, + { + "name" : "Elsa Raven", + "role" : "", + "order" : 8 + }, + { + "name" : "Chip Johnson", + "role" : "", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1984-11-27", + "episodeid" : 2940, + "writer" : [ + "Mark Jones" + ], + "rating" : 6.80000019073486, + "showtitle" : "The A-Team", + "title" : "Sheriffs of Rivertown", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262813.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262813" + }, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "The A-Team travels to South America where they become the law in a town built to house workers of a power plant that has been experiencing a number of fatal accidents.", + "playcount" : 0, + "episode" : 10, + "ratings" : { + "default" : { + "default" : true, + "rating" : 6.80000019073486, + "votes" : 4 + } + }, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262813.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E10.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1 + }, + { + "title" : "The Bells of St. Marys", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262814.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "seasonid" : 555, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262814" + }, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "Threats from their old record label prompt a singing group who went to school with Face to ask the A-Team for help.", + "episode" : 11, + "ratings" : { + "default" : { + "votes" : 3, + "rating" : 7, + "default" : true + } + }, + "playcount" : 0, + "votes" : "3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262814.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E11.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "label" : "3x11. The Bells of St. Marys", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Deborah Lacey" + }, + { + "name" : "Robert Desiderio", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Joseph Wiseman", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2factie%2fJames%20Bond%2f.actors%2fJoseph_Wiseman.jpg/", + "order" : 2 + }, + { + "order" : 3, + "name" : "Michael Alldridge", + "role" : "" + }, + { + "name" : "Reginald T. Dorsey", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Karl Johnson", + "order" : 5 + }, + { + "name" : "Dawn Mangrum", + "role" : "", + "order" : 6 + }, + { + "name" : "Leslie Kawai", + "role" : "", + "order" : 7 + }, + { + "order" : 8, + "role" : "", + "name" : "Lisa Antille" + }, + { + "role" : "", + "name" : "Kathleen O'Malley", + "order" : 9 + }, + { + "order" : 10, + "name" : "Robert Hanley", + "role" : "" + }, + { + "order" : 11, + "name" : "Thomas Patton", + "role" : "" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1984-12-04", + "episodeid" : 2941, + "writer" : [ + "Stephen J. Cannell" + ], + "rating" : 7, + "showtitle" : "The A-Team" + }, + { + "firstaired" : "1984-12-11", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Markie Post" + }, + { + "role" : "", + "name" : "Richard Lynch", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2f8e1KM2XCGh8X2Ekoc6AB9yvUaYS.jpg/" + }, + { + "name" : "Arthur Taxier", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "John Moschitta Jr.", + "role" : "" + }, + { + "order" : 4, + "role" : "", + "name" : "Andy Pomano" + }, + { + "name" : "Stephen Liska", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Liam Sullivan", + "order" : 6 + }, + { + "role" : "", + "name" : "Eve Smith", + "order" : 7 + }, + { + "order" : 8, + "name" : "Suzanne Wasson", + "role" : "" + }, + { + "role" : "", + "name" : "Robert Madrid", + "order" : 9 + }, + { + "role" : "", + "name" : "Benji Gregory", + "order" : 10 + }, + { + "role" : "", + "name" : "Ralph Redpath", + "order" : 11 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "director" : [ + "Tony Mordente" + ], + "label" : "3x12. Hot Styles", + "showtitle" : "The A-Team", + "rating" : 7, + "episodeid" : 2942, + "writer" : [ + "Stephen Katz" + ], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E12.mp4", + "dateadded" : "2016-08-26 09:16:58", + "votes" : "3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262815.jpg/", + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 3 + } + }, + "playcount" : 0, + "plot" : "Face's latest girl friend is rather ungrateful after the A-Team rescues her from mobsters.", + "episode" : 12, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262815.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "title" : "Hot Styles", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262815" + }, + "runtime" : 2700 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [ + { + "name" : "Steve Sandor", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Jeff Doucette", + "role" : "" + }, + { + "name" : "Robert Donner", + "role" : "", + "order" : 2 + }, + { + "name" : "Lenore Kasdorf", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "name" : "Bruce M. Fisher", + "role" : "" + }, + { + "role" : "", + "name" : "Tawny Moyer", + "order" : 5 + }, + { + "role" : "", + "name" : "Melanie Wilson", + "order" : 6 + }, + { + "role" : "", + "name" : "Joe LaDue", + "order" : 7 + }, + { + "order" : 8, + "role" : "", + "name" : "Joe Unger" + }, + { + "order" : 9, + "name" : "Justin Gocke", + "role" : "" + }, + { + "order" : 10, + "name" : "Patrick Cameron", + "role" : "" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1984-12-18", + "director" : [ + "Dennis Donnelly" + ], + "label" : "3x13. Breakout!", + "rating" : 7, + "showtitle" : "The A-Team", + "writer" : [ + "Stephen Katz", + "Mark Jones" + ], + "episodeid" : 2943, + "seasonid" : 555, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262816.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Breakout!", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262816" + }, + "runtime" : 2700, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E13.mp4", + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262816.jpg/", + "plot" : "After being taken hostage by bankrobbers B.A. and Murdock are named as accomplices and put in jail until Decker can come and get them.", + "episode" : 13, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 4, + "default" : true, + "rating" : 7 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "cast" : [ + { + "name" : "John Aston", + "role" : "", + "order" : 0 + }, + { + "name" : "Lisa Denton", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "name" : "Claude Earl Jones", + "role" : "" + }, + { + "name" : "Dave Shelley", + "role" : "", + "order" : 3 + }, + { + "name" : "Gary Lee Davis", + "role" : "", + "order" : 4 + }, + { + "name" : "Shawn Southwick", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "name" : "Toni Sawyer", + "role" : "" + }, + { + "role" : "", + "name" : "Herb Mitchell", + "order" : 7 + }, + { + "name" : "Jim Boeke", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "name" : "David A. Penhale", + "role" : "" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-01-08", + "director" : [ + "Craig R. Baxley" + ], + "label" : "3x14. Cup A' Joe", + "rating" : 7, + "showtitle" : "The A-Team", + "writer" : [ + "Dennis O'Keefe" + ], + "episodeid" : 2944, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E14.mp4", + "specialsortseason" : -1, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262817.jpg/", + "playcount" : 0, + "plot" : "A restaurateur tries to force the owners of a small diner to sell out to him after he arranges for a new freeway off-ramp to be built nearby.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7, + "votes" : 2 + } + }, + "episode" : 14, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "seasonid" : 555, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262817.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "userrating" : 0, + "title" : "Cup A' Joe", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262817" + }, + "runtime" : 2700, + "lastplayed" : "" + }, + { + "season" : 3, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "The A-Team", + "rating" : 7, + "episodeid" : 2945, + "writer" : [ + "Stephen J. Cannell" + ], + "cast" : [ + { + "order" : 0, + "name" : "Wings Hauser", + "role" : "" + }, + { + "name" : "Joseph Sirola", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Al Ruscio", + "order" : 2 + }, + { + "name" : "Janine Turner", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Marshall Teague" + }, + { + "name" : "Victoria Bass", + "role" : "", + "order" : 5 + }, + { + "name" : "William Dyer", + "role" : "", + "order" : 6 + }, + { + "name" : "Tony Ciccone", + "role" : "", + "order" : 7 + }, + { + "order" : 8, + "name" : "Clint Carmichael", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1985-01-15", + "director" : [ + "Arnold Laven" + ], + "label" : "3x15. The Big Squeeze", + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262818" + }, + "runtime" : 2700, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262818.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "seasonid" : 555, + "title" : "The Big Squeeze", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E15.mp4", + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262818.jpg/", + "votes" : "3", + "playcount" : 0, + "plot" : "The A-Team opens its own restaurant to lure a ruthless loan shark who has other restaurant owners terrified.", + "episode" : 15, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7, + "votes" : 3 + } + } + }, + { + "plot" : "B.A. goes undercover as a boxer in order to put a drug-trafficking ring out of business.", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 3, + "default" : true, + "rating" : 7 + } + }, + "votes" : "3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262819.jpg/", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E16.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Champ!", + "seasonid" : 555, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262819.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262819" + }, + "lastplayed" : "", + "tvshowid" : 137, + "label" : "3x16. Champ!", + "director" : [ + "Michael O'Herlihy" + ], + "cast" : [ + { + "name" : "Alex Rocco", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2flISkRNmrR2P8OXvgPBZc7QmkLWA.jpg/", + "order" : 0 + }, + { + "name" : "Joe E. Tata", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "name" : "Dick Balduzzi", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Holly Gagnier" + }, + { + "name" : "Herman Poppe", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Danile Faraldo", + "role" : "" + }, + { + "role" : "", + "name" : "Grey Collins", + "order" : 6 + }, + { + "role" : "", + "name" : "Lana Clarkson", + "order" : 7 + }, + { + "order" : 8, + "name" : "Jimmy Lennon Sr.", + "role" : "" + }, + { + "name" : "Greg Collins", + "role" : "", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1985-01-22", + "writer" : [ + "Stephen Katz" + ], + "episodeid" : 2946, + "showtitle" : "The A-Team", + "rating" : 7, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3 + }, + { + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Mark Jones" + ], + "episodeid" : 2947, + "showtitle" : "The A-Team", + "rating" : 6.5, + "label" : "3x17. Skins", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "order" : 0, + "name" : "John Quade", + "role" : "" + }, + { + "name" : "John Calvin", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Daphne Maxwell Reid" + }, + { + "name" : "Jessie Lawrence Ferguson", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Darin Taylor" + }, + { + "role" : "", + "name" : "Mike Moroff", + "order" : 5 + }, + { + "order" : 6, + "name" : "Tony O'Neil", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1985-01-29", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262820" + }, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Skins", + "seasonid" : 555, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262820.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "episode" : 17, + "plot" : "The A-Team travels to Kenya to deal with game poachers who have included a game warden among their kills.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 6.5, + "votes" : 2 + } + }, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262820.jpg/", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E17.mp4", + "specialsortseason" : -1 + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262821" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Road Games", + "userrating" : 0, + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262821.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262821.jpg/", + "votes" : "3", + "ratings" : { + "default" : { + "votes" : 3, + "rating" : 7.30000019073486, + "default" : true + } + }, + "plot" : "Face infiltrates a gambling ring to clear a man's gambling debts and to save the foster home he runs.", + "playcount" : 0, + "episode" : 18, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E18.mp4", + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 2948, + "writer" : [ + "Mark Jones" + ], + "showtitle" : "The A-Team", + "rating" : 7.30000019073486, + "label" : "3x18. Road Games", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Edward Winter" + }, + { + "name" : "Daphne Ashbrook", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Kaz Garas", + "order" : 2 + }, + { + "role" : "", + "name" : "Kathy Baldwin", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Frank Marth" + }, + { + "name" : "Read Morgan", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "name" : "Candy Olsen", + "role" : "" + }, + { + "role" : "", + "name" : "Michael Buccelato", + "order" : 7 + }, + { + "role" : "", + "name" : "Nick Cavanaugh", + "order" : 8 + }, + { + "name" : "Brad Fisher", + "role" : "", + "order" : 9 + }, + { + "order" : 10, + "role" : "", + "name" : "Don Maxwell" + }, + { + "order" : 11, + "name" : "Lia Yoon", + "role" : "" + }, + { + "order" : 12, + "role" : "", + "name" : "DeShá Bynum" + }, + { + "role" : "", + "name" : "Brian Autenreighth", + "order" : 13 + }, + { + "name" : "Brian Autenrieth", + "role" : "", + "order" : 14 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-02-05", + "director" : [ + "Dennis Donnelly" + ] + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262822.jpg/", + "votes" : "2", + "ratings" : { + "default" : { + "default" : true, + "rating" : 5.5, + "votes" : 2 + } + }, + "playcount" : 0, + "episode" : 19, + "plot" : "A Middle Eastern potentate hires the A-Team to protect his about-to-be-married daughter despite her ideas to the contrary.", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E19.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "262822" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Moving Targets", + "seasonid" : 555, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262822.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "writer" : [ + "Mark Jones" + ], + "episodeid" : 2949, + "showtitle" : "The A-Team", + "rating" : 5.5, + "label" : "3x19. Moving Targets", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Sue Kiel" + }, + { + "order" : 1, + "name" : "John Saxon", + "role" : "" + }, + { + "role" : "", + "name" : "Frank Annese", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Jack Heller" + }, + { + "name" : "Maurice Serbanee", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Kavi Raz", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "Ava Lazar" + }, + { + "order" : 7, + "role" : "", + "name" : "Adam Ageli" + }, + { + "name" : "John Hamelin", + "role" : "", + "order" : 8 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1985-02-12", + "director" : [ + "Dennis Donnelly" + ], + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E20.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "episode" : 20, + "plot" : "The A-Team comes to the aid of an auto mechanic being driven out of business by a ruthless competitor.", + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 7, + "default" : true + } + }, + "playcount" : 0, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262823.jpg/", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262823.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "title" : "Knights of the Road", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262823" + }, + "director" : [ + "Michael O'Herlihy" + ], + "firstaired" : "1985-02-26", + "cast" : [ + { + "order" : 0, + "name" : "Don Stroud", + "role" : "" + }, + { + "order" : 1, + "name" : "Carlos Romero", + "role" : "" + }, + { + "order" : 2, + "name" : "Tim McMullen", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Deborah Goodrich" + }, + { + "name" : "Ji Tu Cumbuka", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Jimmie F. Skaggs", + "role" : "" + }, + { + "role" : "", + "name" : "Ricardo Lopez", + "order" : 6 + }, + { + "order" : 7, + "name" : "Galyn Gorg", + "role" : "" + }, + { + "order" : 8, + "role" : "", + "name" : "Russ McCubbin" + }, + { + "name" : "John Kelly", + "role" : "", + "order" : 9 + }, + { + "order" : 10, + "name" : "Marty Imsland", + "role" : "" + }, + { + "role" : "", + "name" : "Carlos Rivas", + "order" : 11 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "label" : "3x20. Knights of the Road", + "rating" : 7, + "showtitle" : "The A-Team", + "episodeid" : 2950, + "writer" : [ + "Burt Pearl", + "Steven L. Sears" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E21.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262824.jpg/", + "votes" : "1", + "episode" : 21, + "playcount" : 0, + "plot" : "The A-Team discovers a plot to dump toxic waste when they try to protect a man and his blind sister from harassment.", + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 7 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "seasonid" : 555, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262824.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "userrating" : 0, + "title" : "Waste 'Em!", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262824" + }, + "runtime" : 2700, + "lastplayed" : "", + "cast" : [ + { + "role" : "", + "name" : "Joseph Hacker", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Stacey Nelkin" + }, + { + "name" : "John Dennis Johnston", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Mitchell Ryan", + "order" : 3 + }, + { + "role" : "", + "name" : "Richard Herd", + "order" : 4 + }, + { + "name" : "Carrell Myers", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "name" : "Bruce Tuthill", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1985-03-05", + "director" : [ + "Sydney Hayers" + ], + "label" : "3x21. Waste 'Em!", + "rating" : 7, + "showtitle" : "The A-Team", + "writer" : [ + "Stephen Katz", + "Mark Jones" + ], + "episodeid" : 2951, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "seasonid" : 555, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262825.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + }, + "userrating" : 0, + "title" : "Bounty", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262825" + }, + "runtime" : 2700, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E22.mp4", + "specialsortseason" : -1, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262825.jpg/", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.5, + "votes" : 2 + } + }, + "episode" : 22, + "plot" : "Murdock is kidnapped by bounty hunters that hope to use him as bait to capture the rest of the A-Team. When the Team arrives to rescue him, they find he has fallen in love with a veteranarian that's helped save him.", + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Wendy Fulton" + }, + { + "role" : "", + "name" : "Gene Evans", + "order" : 1 + }, + { + "role" : "", + "name" : "Bill McKinney", + "order" : 2 + }, + { + "order" : 3, + "name" : "Edy Roberts", + "role" : "" + }, + { + "role" : "", + "name" : "Mike Tully", + "order" : 4 + }, + { + "order" : 5, + "name" : "Michael Chieffo", + "role" : "" + }, + { + "order" : 6, + "role" : "", + "name" : "Don Maxwell" + }, + { + "order" : 7, + "name" : "Huck Liggett", + "role" : "" + }, + { + "role" : "", + "name" : "Paul Koslo", + "order" : 8 + }, + { + "order" : 9, + "name" : "Mickey Jones", + "role" : "" + }, + { + "name" : "Joan Roberts", + "role" : "", + "order" : 10 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-04-02", + "director" : [ + "Michael O'Herlihy" + ], + "label" : "3x22. Bounty", + "rating" : 7.5, + "showtitle" : "The A-Team", + "writer" : [ + "Stephen Katz" + ], + "episodeid" : 2952 + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E23.mp4", + "dateadded" : "2016-08-26 09:16:58", + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 4 + } + }, + "episode" : 23, + "plot" : "The A-Team goes uptown and gets involved with an art dealer who has been replacing original paintings with fakes.", + "playcount" : 0, + "votes" : "4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262826.jpg/", + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262826" + }, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262826.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "productioncode" : "", + "seasonid" : 555, + "title" : "Beverly Hills Assault", + "userrating" : 0, + "rating" : 7, + "showtitle" : "The A-Team", + "episodeid" : 2953, + "writer" : [ + "Paul Birnbaum" + ], + "director" : [ + "Craig R. Baxley" + ], + "firstaired" : "1985-04-09", + "cast" : [ + { + "name" : "Michael Young", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Maylo McCaslin", + "role" : "" + }, + { + "order" : 2, + "name" : "Dennis Franz", + "role" : "" + }, + { + "role" : "", + "name" : "Lloyd Bochner", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fxVS6edZlUempGkjWqSnPnkGcRTw.jpg/", + "name" : "Bruce Glover", + "role" : "" + }, + { + "role" : "", + "name" : "Kathy Witt", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fd8i0tFr9JDfhGUhKtr25HnZey3s.jpg/", + "order" : 6, + "role" : "", + "name" : "Branscombe Richmond" + }, + { + "name" : "Cherie Michan", + "role" : "", + "order" : 7 + }, + { + "role" : "", + "name" : "Garnett Smith", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "David Westgor" + }, + { + "order" : 10, + "name" : "Kim Fuster", + "role" : "" + }, + { + "name" : "Tony Ciccone", + "role" : "", + "order" : 11 + }, + { + "order" : 12, + "role" : "", + "name" : "Linda DeSoto" + }, + { + "order" : 13, + "name" : "Nik Celozzi", + "role" : "" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "label" : "3x23. Beverly Hills Assault", + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "episodeid" : 2954, + "writer" : [ + "Burt Pearl", + "Steven L. Sears" + ], + "showtitle" : "The A-Team", + "rating" : 7, + "label" : "3x24. Trouble Brewing", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Claudia Christian" + }, + { + "name" : "Suzanne Barnes", + "role" : "", + "order" : 1 + }, + { + "name" : "Louis Giambalvo", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Robert Dryer", + "role" : "" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fIovpB0rm77GljLMLP5S3VW6AAi.jpg/", + "role" : "", + "name" : "Anthony James" + }, + { + "name" : "Jack Hogan", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Walter Matthews", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Cal Gibson" + }, + { + "order" : 8, + "role" : "", + "name" : "Nick Mariano" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1985-05-07", + "director" : [ + "Michael O'Herlihy" + ], + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262827.jpg/", + "votes" : "3", + "episode" : 24, + "plot" : "Two sisters ask the A-Team for help when they are pressured to convert their all-natural soda pop bottling plant into a brewery.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 3 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E24.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262827" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Trouble Brewing", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262827.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 555 + }, + { + "episodeid" : 2955, + "writer" : [ + "Frank Lupo" + ], + "rating" : 7, + "showtitle" : "The A-Team", + "label" : "3x25. Incident at Crystal Lake", + "director" : [ + "Tony Mordente" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Robert Gray" + }, + { + "order" : 1, + "name" : "Robert Tessier", + "role" : "" + }, + { + "name" : "Ken Swofford", + "role" : "", + "order" : 2 + }, + { + "name" : "Kristen Meadows", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "name" : "Christopher Stone", + "role" : "" + }, + { + "name" : "Judson Scott", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Mindi Iden", + "order" : 6 + }, + { + "order" : 7, + "name" : "Christopher Kriesa", + "role" : "" + }, + { + "role" : "", + "name" : "Beau Billingslea", + "order" : 8 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1985-05-14", + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "The A-Team's planned fishing vacation at a lakeside retreat is ruined when Decker and his men show up.", + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 7, + "default" : true + } + }, + "episode" : 25, + "playcount" : 0, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262828.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 3/S3E25.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262828" + }, + "tvshowid" : 137, + "title" : "Incident at Crystal Lake", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262828.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 555 + }, + { + "episodeid" : 2956, + "writer" : [], + "rating" : 7, + "showtitle" : "The A-Team", + "label" : "4x01. Judgment Day (1)", + "cast" : [ + { + "order" : 0, + "name" : "LaGena Hart", + "role" : "" + }, + { + "role" : "", + "name" : "Zack Norman", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Robert Miranda" + }, + { + "name" : "Carl Strano", + "role" : "", + "order" : 3 + }, + { + "name" : "June Chadwick", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Michael DeLano", + "order" : 5 + }, + { + "name" : "Dana Elcar", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "James F. Kelly", + "role" : "" + }, + { + "name" : "Ana Obregón", + "role" : "", + "order" : 8 + }, + { + "role" : "", + "name" : "Michael Daniel Russo", + "order" : 9 + }, + { + "role" : "", + "name" : "Richard Brose", + "order" : 10 + }, + { + "order" : 11, + "name" : "Ken Learner", + "role" : "" + }, + { + "order" : 12, + "name" : "Marji Martin", + "role" : "" + }, + { + "name" : "Nicolette Scorsese", + "role" : "", + "order" : 13 + }, + { + "role" : "", + "name" : "Benjamin Jurand", + "order" : 14 + }, + { + "order" : 15, + "role" : "", + "name" : "Keith Walker" + }, + { + "order" : 16, + "role" : "", + "name" : "Ana Obregón" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-09-24", + "director" : [], + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262829.jpg/", + "votes" : "2", + "plot" : "The A-Team goes to Italy to rescue a judge's daughter from mobsters, then must spend the journey home aboard an oceanliner dodging the boys trying to get her back.", + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 2, + "default" : true, + "rating" : 7 + } + }, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E1.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262829" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Judgment Day (1)", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262829.jpg/" + }, + "seasonid" : 556 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "label" : "4x02. Judgment Day (2)", + "firstaired" : "1985-09-24", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "LaGena Hart" + }, + { + "role" : "", + "name" : "Zack Norman", + "order" : 1 + }, + { + "name" : "Robert Miranda", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Carl Strano", + "order" : 3 + }, + { + "role" : "", + "name" : "June Chadwick", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Michael DeLano" + }, + { + "order" : 6, + "role" : "", + "name" : "Dana Elcar" + }, + { + "name" : "James F. Kelly", + "role" : "", + "order" : 7 + }, + { + "name" : "Ana Obregón", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "name" : "Michael Daniel Russo", + "role" : "" + }, + { + "order" : 10, + "name" : "Richard Brose", + "role" : "" + }, + { + "order" : 11, + "name" : "Ken Learner", + "role" : "" + }, + { + "order" : 12, + "name" : "Marji Martin", + "role" : "" + }, + { + "order" : 13, + "role" : "", + "name" : "Nicolette Scorsese" + }, + { + "order" : 14, + "role" : "", + "name" : "Benjamin Jurand" + }, + { + "order" : 15, + "role" : "", + "name" : "Keith Walker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [], + "episodeid" : 2957, + "writer" : [], + "showtitle" : "The A-Team", + "rating" : 6.5, + "title" : "Judgment Day (2)", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262830.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "seasonid" : 556, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262830" + }, + "runtime" : 2700, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262830.jpg/", + "ratings" : { + "default" : { + "default" : true, + "rating" : 6.5, + "votes" : 2 + } + }, + "playcount" : 0, + "episode" : 2, + "plot" : "The A-Team goes to Italy to rescue a judge's daughter from mobsters, then must spend the journey home aboard an oceanliner dodging the boys trying to get her back.", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E2.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E3.mp4", + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262831.jpg/", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7, + "votes" : 2 + } + }, + "playcount" : 0, + "episode" : 3, + "plot" : "The A-Team must make do with movie prop guns against the real things when they are attacked while helping Hannibal and a friend film a low-budget movie in Mexico.", + "dateadded" : "2016-08-26 09:16:58", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262831" + }, + "runtime" : 2700, + "lastplayed" : "", + "seasonid" : 556, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262831.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Where is the Monster When You Need Him?", + "showtitle" : "The A-Team", + "rating" : 7, + "writer" : [ + "Stephen J. Cannell" + ], + "episodeid" : 2958, + "firstaired" : "1985-10-01", + "cast" : [ + { + "role" : "", + "name" : "Michael Lerner", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fnJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg/", + "order" : 0 + }, + { + "role" : "", + "name" : "Judy Landers", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Dennis Cole" + }, + { + "order" : 3, + "role" : "", + "name" : "Mike Preston" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2factie%2fJames%20Bond%2f.actors%2fWalter_Gotell.jpg/", + "order" : 4, + "name" : "Walter Gotell", + "role" : "" + }, + { + "order" : 5, + "role" : "", + "name" : "Rick Garcia" + }, + { + "role" : "", + "name" : "James Vicher", + "order" : 6 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [ + "Michael O'Herlihy" + ], + "label" : "4x03. Where is the Monster When You Need Him?", + "season" : 4, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "showtitle" : "The A-Team", + "rating" : 7.5, + "writer" : [], + "episodeid" : 2959, + "director" : [], + "cast" : [ + { + "order" : 0, + "name" : "Della Reese", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Wendy Schaal" + }, + { + "order" : 2, + "name" : "Ray Wise", + "role" : "" + }, + { + "role" : "", + "name" : "Brion James", + "order" : 3 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fprgiajw2LMSuoHOlYqWHKuXPB1U.jpg/", + "name" : "Liz Sheridan", + "role" : "" + }, + { + "name" : "Wiley Harker", + "role" : "", + "order" : 6 + }, + { + "role" : "", + "name" : "I. Carlo", + "order" : 7 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-10-22", + "label" : "4x04. A Lease with an Option to Die", + "season" : 4, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E4.mp4", + "specialsortseason" : -1, + "episode" : 4, + "plot" : "Some muscle men make a big mistake when they try to force B.A.'s momma out of her apartment.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 2, + "default" : true, + "rating" : 7.5 + } + }, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262832.jpg/", + "dateadded" : "2016-08-26 09:16:58", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262832" + }, + "lastplayed" : "", + "seasonid" : 556, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262832.jpg/" + }, + "userrating" : 0, + "title" : "A Lease with an Option to Die" + }, + { + "userrating" : 0, + "title" : "The Road to Hope", + "seasonid" : 556, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262833.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/" + }, + "uniqueid" : { + "unknown" : "262833" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262833.jpg/", + "episode" : 5, + "plot" : "Hannibal poses as a wino to avoid being caught by the Army and stumbles onto a racket that involves killing the derelicts.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7, + "votes" : 1 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E5.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "label" : "4x05. The Road to Hope", + "cast" : [ + { + "role" : "", + "name" : "Elisha Cook Jr.", + "order" : 0 + }, + { + "role" : "", + "name" : "Christopher Neame", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Warren Berlinger" + }, + { + "order" : 3, + "role" : "", + "name" : "Bill Marcus" + }, + { + "name" : "Gloria Charles", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Lori Butler" + }, + { + "order" : 6, + "name" : "Ancel Cool", + "role" : "" + }, + { + "role" : "", + "name" : "William Dyer", + "order" : 7 + }, + { + "order" : 8, + "name" : "Jim Edgcomb", + "role" : "" + }, + { + "order" : 9, + "name" : "Rick Garcia", + "role" : "" + }, + { + "name" : "Michael Keys Hall", + "role" : "", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Joan-Carol Kent" + }, + { + "order" : 12, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fthriller%2f.actors%2fMitch_Pileggi.jpg/", + "role" : "", + "name" : "Mitch Pileggi" + }, + { + "name" : "Mike Reynolds", + "role" : "", + "order" : 13 + }, + { + "role" : "", + "name" : "Harry Woolf", + "order" : 14 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1985-10-29", + "director" : [], + "writer" : [], + "episodeid" : 2960, + "rating" : 7, + "showtitle" : "The A-Team" + }, + { + "seasonid" : 556, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262834.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "userrating" : 0, + "title" : "The Heart of Rock N' Roll", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262834" + }, + "runtime" : 2700, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E6.mp4", + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262834.jpg/", + "playcount" : 0, + "plot" : "Singer Rick James asks the A-Team to help an old rock-and-roll legend whose life in prison has suddenly become very dangerous.", + "episode" : 6, + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 7.5, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4, + "firstaired" : "1985-11-05", + "cast" : [ + { + "order" : 0, + "name" : "Isaac Hayes", + "role" : "" + }, + { + "role" : "", + "name" : "Eileen Barnett", + "order" : 1 + }, + { + "order" : 2, + "name" : "Peter Haskell", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Beau Starr" + }, + { + "order" : 4, + "name" : "Rick James", + "role" : "" + }, + { + "name" : "Ji Tu Cumbuka", + "role" : "", + "order" : 5 + }, + { + "name" : "James Avery", + "role" : "", + "order" : 6 + }, + { + "role" : "", + "name" : "Al Pugliese", + "order" : 7 + }, + { + "order" : 8, + "name" : "Kimberly LaBelle", + "role" : "" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [ + "Tony Mordente" + ], + "label" : "4x06. The Heart of Rock N' Roll", + "rating" : 7.5, + "showtitle" : "The A-Team", + "writer" : [ + "Frank Lupo" + ], + "episodeid" : 2961 + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262835" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Body Slam", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262835.jpg/" + }, + "productioncode" : "", + "seasonid" : 556, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262835.jpg/", + "plot" : "Hulk Hogan asks his old friend B.A. for the A-Team's help against a mobster who is out to close down a youth center for no apparent reason.", + "playcount" : 0, + "episode" : 7, + "ratings" : { + "default" : { + "votes" : 1, + "rating" : 7, + "default" : true + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E7.mp4", + "season" : 4, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 2962, + "writer" : [ + "Bill Nuss" + ], + "showtitle" : "The A-Team", + "rating" : 7, + "label" : "4x07. Body Slam", + "firstaired" : "1985-11-12", + "cast" : [ + { + "role" : "", + "name" : "Deborah Wakeham", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Michael Gregory" + }, + { + "order" : 2, + "name" : "Titos Vandis", + "role" : "" + }, + { + "order" : 3, + "name" : "Hulk Hogan", + "role" : "" + }, + { + "order" : 4, + "name" : "Gene Okerland", + "role" : "" + }, + { + "order" : 5, + "name" : "Sam Melville", + "role" : "" + }, + { + "order" : 6, + "name" : "James Bartz", + "role" : "" + }, + { + "order" : 7, + "role" : "", + "name" : "Preston Hanson" + }, + { + "name" : "Bob Purvey", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Davey Boy Smith" + }, + { + "name" : "Tom Billington", + "role" : "", + "order" : 10 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "director" : [ + "Craig R. Baxley" + ] + }, + { + "title" : "Blood, Sweat, and Cheers", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262836.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 556, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262836" + }, + "runtime" : 2700, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262836.jpg/", + "plot" : "Someone sabotages a car at a regional stock-car race and attracts the A-Team's attention-the car belongs to Hannibal's nephew.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 2 + } + }, + "episode" : 8, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E8.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "label" : "4x08. Blood, Sweat, and Cheers", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Stuart Whitman" + }, + { + "role" : "", + "name" : "Ken Olandt", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Wings Hauser" + }, + { + "order" : 3, + "role" : "", + "name" : "Toni Hudson" + }, + { + "role" : "", + "name" : "Claben Hartley", + "order" : 4 + }, + { + "role" : "", + "name" : "Arthur Taxier", + "order" : 5 + }, + { + "role" : "", + "name" : "Kit Fredericks", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Deborah Scardilli" + }, + { + "order" : 8, + "role" : "", + "name" : "Robert Sutton" + }, + { + "name" : "Jeff Sanders", + "role" : "", + "order" : 9 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1985-11-19", + "director" : [ + "Sydney Hayers" + ], + "episodeid" : 2963, + "writer" : [ + "Tom Blomquist" + ], + "showtitle" : "The A-Team", + "rating" : 7 + }, + { + "writer" : [ + "Stephen J. Cannell" + ], + "episodeid" : 2964, + "rating" : 8.5, + "showtitle" : "The A-Team", + "label" : "4x09. Mind Games", + "firstaired" : "1985-11-26", + "cast" : [ + { + "name" : "Sheelagh McLeod", + "role" : "", + "order" : 0 + }, + { + "name" : "David Hedison", + "role" : "", + "order" : 1, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2factie%2fJames%20Bond%2f.actors%2fDavid_Hedison.jpg/" + }, + { + "name" : "Barney McFadden", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJames_Hong.jpg/", + "name" : "James Hong", + "role" : "" + }, + { + "order" : 4, + "name" : "Larry Anderson", + "role" : "" + }, + { + "role" : "", + "name" : "Ping Wu", + "order" : 5 + }, + { + "order" : 6, + "name" : "Jan Merlin", + "role" : "" + }, + { + "order" : 7, + "role" : "", + "name" : "Larry Carroll" + }, + { + "name" : "Johnny Mountain", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Hal Rayle" + }, + { + "name" : "Adele West", + "role" : "", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Wendy Sherwood" + }, + { + "name" : "Cal Pritner", + "role" : "", + "order" : 12 + }, + { + "role" : "", + "name" : "Rodney Saulsberry", + "order" : 13 + }, + { + "order" : 14, + "name" : "Rod Stryker", + "role" : "" + }, + { + "name" : "Inez Pedroza", + "role" : "", + "order" : 15 + }, + { + "name" : "Ed Quinlan", + "role" : "", + "order" : 16 + }, + { + "order" : 17, + "role" : "", + "name" : "Dennis Kelly" + }, + { + "name" : "Scott Ellsworth", + "role" : "", + "order" : 18 + }, + { + "order" : 19, + "name" : "Be", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "director" : [ + "Michael O'Herlihy" + ], + "season" : 4, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262837.jpg/", + "playcount" : 0, + "plot" : "Face quits the A-Team after receiving a full government pardon and quickly becomes a celebrity, the rest of the A-Team keeps an eye on him suspecting the pardon's not 100% legit.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.5, + "votes" : 2 + } + }, + "episode" : 9, + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E9.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "262837" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "Mind Games", + "seasonid" : 556, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262837.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + } + }, + { + "label" : "4x10. There Goes the Neighborhood", + "director" : [ + "Dennis Donnelly" + ], + "cast" : [ + { + "order" : 0, + "name" : "Walter Olkewicz", + "role" : "" + }, + { + "order" : 1, + "name" : "Victor Campos", + "role" : "" + }, + { + "order" : 2, + "role" : "", + "name" : "John Aprea" + }, + { + "name" : "Valerie Stevenson", + "role" : "", + "order" : 3 + }, + { + "name" : "Robert Pastorelli", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fSteve_Eastin.jpg/", + "role" : "", + "name" : "Steve Eastin" + }, + { + "order" : 6, + "role" : "", + "name" : "Richard McGonagle" + }, + { + "order" : 7, + "name" : "Peggy Walton-Walker", + "role" : "" + }, + { + "name" : "Scott St. James", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Jennifer Roach" + }, + { + "name" : "Shawn Casey O'Brien", + "role" : "", + "order" : 10 + }, + { + "role" : "", + "name" : "Julius Carry", + "order" : 11 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-12-03", + "episodeid" : 2965, + "writer" : [ + "Bill Nuss" + ], + "showtitle" : "The A-Team", + "rating" : 6.5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "dateadded" : "2016-08-26 09:16:58", + "episode" : 10, + "plot" : "The A-Team moves a rock star threatened with kidnapping into a quiet suburban neighborhood, which doesn't stay quite for long.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 2, + "default" : true, + "rating" : 6.5 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262838.jpg/", + "votes" : "2", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E10.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "title" : "There Goes the Neighborhood", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262838.jpg/" + }, + "productioncode" : "", + "seasonid" : 556, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262838" + }, + "tvshowid" : 137 + }, + { + "title" : "The Doctor is Out", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262839.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "seasonid" : 556, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262839" + }, + "tvshowid" : 137, + "dateadded" : "2016-08-26 09:16:58", + "ratings" : { + "default" : { + "votes" : 1, + "rating" : 7, + "default" : true + } + }, + "episode" : 11, + "playcount" : 0, + "plot" : "The A-Team travels to South America to find Murdock's psychiatrist, accompanied by a woman claiming to be his daughter.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262839.jpg/", + "votes" : "1", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E11.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "label" : "4x11. The Doctor is Out", + "director" : [], + "cast" : [ + { + "order" : 0, + "name" : "Jeanetta Arnette", + "role" : "" + }, + { + "name" : "Richard Anderson", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2flHI1T7yJfCv3cfD7SpAkH0OWDNx.jpg/", + "order" : 1 + }, + { + "role" : "", + "name" : "Geoffrey Lewis", + "order" : 2 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fDaniel_Davis.jpg/", + "order" : 3, + "role" : "", + "name" : "Daniel Davis" + }, + { + "order" : 4, + "name" : "Danny Mora", + "role" : "" + }, + { + "role" : "", + "name" : "Richard Partlow", + "order" : 5 + }, + { + "role" : "", + "name" : "Rodney Saulsberry", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Karyn O'Bryan" + }, + { + "name" : "Richard Duran", + "role" : "", + "order" : 8 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1985-12-10", + "episodeid" : 2966, + "writer" : [], + "rating" : 7, + "showtitle" : "The A-Team" + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4, + "director" : [ + "Michael O'Herlihy" + ], + "cast" : [ + { + "name" : "Bruce Solomon", + "role" : "", + "order" : 0 + }, + { + "role" : "", + "name" : "Arte Johnson", + "order" : 1 + }, + { + "order" : 2, + "name" : "Susan Scannell", + "role" : "" + }, + { + "order" : 3, + "name" : "Art Metrano", + "role" : "" + }, + { + "order" : 4, + "name" : "Lewis Dawber", + "role" : "" + }, + { + "order" : 5, + "role" : "", + "name" : "Anthony McLaughlin" + }, + { + "order" : 6, + "role" : "", + "name" : "Jonathan Goldsmith" + }, + { + "order" : 7, + "role" : "", + "name" : "Eric Lawson" + }, + { + "order" : 8, + "role" : "", + "name" : "Toni Attell" + }, + { + "order" : 9, + "name" : "S. Marc Jordan", + "role" : "" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1985-12-17", + "label" : "4x12. Uncle Buckle-Up", + "showtitle" : "The A-Team", + "rating" : 7, + "episodeid" : 2967, + "writer" : [ + "Danny Lee Cole" + ], + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262840.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "seasonid" : 556, + "title" : "Uncle Buckle-Up", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262840" + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E12.mp4", + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "plot" : "The A-Team discovers a kiddie show is a front for a heroin ring when Hannibal auditions for a part.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7, + "votes" : 1 + } + }, + "episode" : 12, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262840.jpg/", + "votes" : "1", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262841.jpg/", + "votes" : "0", + "playcount" : 0, + "plot" : "Murdock's fortunes rise and fall as he uses Face's system to win big on \"Wheel of Fortune\" but then is kidnapped during a plot to steal a Soviet gunship.", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 13, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E13.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262841" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Wheel of Fortune", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262841.jpg/" + }, + "seasonid" : 556, + "episodeid" : 2968, + "writer" : [], + "showtitle" : "The A-Team", + "rating" : 0, + "label" : "4x13. Wheel of Fortune", + "firstaired" : "1986-01-14", + "cast" : [ + { + "order" : 0, + "name" : "George McDaniel", + "role" : "" + }, + { + "role" : "", + "name" : "Lydia Cornell", + "order" : 1 + }, + { + "order" : 2, + "name" : "Bernie Pock", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Richard Evans" + }, + { + "name" : "Judd Omen", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Gregory Itzin", + "order" : 5 + }, + { + "order" : 6, + "name" : "Kerry Michaels", + "role" : "" + }, + { + "order" : 7, + "role" : "", + "name" : "Pat Sajak" + }, + { + "role" : "", + "name" : "Vanna White", + "order" : 8 + }, + { + "role" : "", + "name" : "Rouena Bales", + "order" : 9 + }, + { + "order" : 10, + "name" : "Jack Clark", + "role" : "" + }, + { + "order" : 11, + "name" : "Tricia Hutton", + "role" : "" + }, + { + "order" : 12, + "role" : "", + "name" : "Dian Gallup" + }, + { + "order" : 13, + "name" : "Denise Gallup", + "role" : "" + }, + { + "order" : 14, + "name" : "Kendall", + "role" : "" + }, + { + "name" : "Bill Nuss", + "role" : "", + "order" : 15 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [], + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "label" : "4x14. The A-Team is Coming, the A-Team is Coming", + "firstaired" : "1986-01-21", + "cast" : [ + { + "order" : 0, + "name" : "David Kagen", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Daryl Anderson" + }, + { + "order" : 2, + "name" : "Gene Scherer", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "William Smith" + }, + { + "order" : 4, + "name" : "John Considine", + "role" : "" + }, + { + "order" : 5, + "role" : "", + "name" : "Curt Lowens" + }, + { + "order" : 6, + "role" : "", + "name" : "Raissa Danilov" + }, + { + "name" : "Jay Scorpio", + "role" : "", + "order" : 7 + }, + { + "role" : "", + "name" : "Vachik Mangassarian", + "order" : 8 + }, + { + "order" : 9, + "name" : "Stephen Corfin", + "role" : "" + }, + { + "order" : 10, + "name" : "Michael R. George", + "role" : "" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "director" : [], + "writer" : [], + "episodeid" : 2969, + "showtitle" : "The A-Team", + "rating" : 7, + "userrating" : 0, + "title" : "The A-Team is Coming, the A-Team is Coming", + "seasonid" : 556, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262842.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "262842" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262842.jpg/", + "votes" : "1", + "episode" : 14, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 7 + } + }, + "plot" : "Soviet spys need the A-Teams help in preventing the theft of an American satellite weapon, whose disappearance would disrupt world peace.", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E14.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1 + }, + { + "seasonid" : 556, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262843.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "userrating" : 0, + "title" : "Members Only", + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262843" + }, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E15.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 1 + } + }, + "plot" : "Face's chances of getting into an exclusive country club are severely hampered by the A-Team's battles on club property with a crooked bank president.", + "episode" : 15, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262843.jpg/", + "votes" : "1", + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4, + "director" : [ + "Tony Mordente" + ], + "cast" : [ + { + "name" : "Scott Colomby", + "role" : "", + "order" : 0 + }, + { + "name" : "Kevin McCarthy", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "name" : "Betsy Russell", + "role" : "" + }, + { + "order" : 3, + "name" : "Barrie Ingham", + "role" : "" + }, + { + "order" : 4, + "role" : "", + "name" : "Carole Cook" + }, + { + "name" : "Shecky Greene", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "Steve Tannen" + }, + { + "name" : "Paul Tinder", + "role" : "", + "order" : 7 + }, + { + "role" : "", + "name" : "Rod Stryker", + "order" : 8 + }, + { + "name" : "Ben Hartgan", + "role" : "", + "order" : 9 + }, + { + "name" : "Larry Stewart", + "role" : "", + "order" : 10 + }, + { + "name" : "Julie Rhodes", + "role" : "", + "order" : 11 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1986-01-28", + "label" : "4x15. Members Only", + "showtitle" : "The A-Team", + "rating" : 7, + "writer" : [ + "Bill Nuss" + ], + "episodeid" : 2970 + }, + { + "episodeid" : 2971, + "writer" : [ + "Stephen J. Cannell" + ], + "rating" : 7.69999980926514, + "showtitle" : "The A-Team", + "label" : "4x16. Cowboy George", + "cast" : [ + { + "order" : 0, + "name" : "L.Q. Jones", + "role" : "" + }, + { + "role" : "", + "name" : "Taylor Lacher", + "order" : 1 + }, + { + "order" : 2, + "name" : "Ben Slack", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Boy George" + }, + { + "order" : 4, + "role" : "", + "name" : "Jim Boeke" + }, + { + "role" : "", + "name" : "Johnny Lee", + "order" : 5 + }, + { + "role" : "", + "name" : "London Donfield", + "order" : 6 + }, + { + "order" : 7, + "name" : "Jon Moss", + "role" : "" + }, + { + "role" : "", + "name" : "Roy Hay", + "order" : 8 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-02-11", + "director" : [ + "Tony Mordente" + ], + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262844.jpg/", + "votes" : "3", + "plot" : "Face believes he's booked country singer Cowboy George into one of the roughest dance halls in the Southwest, but his agent friend delivers Boy George instead.", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 3 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E16.mp4", + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262844" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "Cowboy George", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262844.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "seasonid" : 556 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 4, + "director" : [ + "Craig R. Baxley" + ], + "cast" : [ + { + "order" : 0, + "name" : "Moosie Drier", + "role" : "" + }, + { + "name" : "Jesse Vint", + "role" : "", + "order" : 1 + }, + { + "name" : "Barry Corbin", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Gillian Grant" + }, + { + "name" : "Red West", + "role" : "", + "order" : 4 + }, + { + "name" : "Anthony James", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fIovpB0rm77GljLMLP5S3VW6AAi.jpg/", + "order" : 5 + }, + { + "name" : "Dennis Stewart", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "Cary Clarke", + "role" : "" + }, + { + "role" : "", + "name" : "Chris Caputo", + "order" : 8 + }, + { + "role" : "", + "name" : "Darwin Swalve", + "order" : 9 + }, + { + "order" : 10, + "role" : "", + "name" : "Bill Dyer" + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-02-18", + "label" : "4x17. Waiting for Insane Wayne", + "showtitle" : "The A-Team", + "rating" : 7, + "episodeid" : 2972, + "writer" : [ + "Frank Lupo", + "Stephen J. Cannell" + ], + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262845.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "seasonid" : 556, + "title" : "Waiting for Insane Wayne", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262845" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E17.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "When Murdock gets mistaken for an insane mercenary the A-Team is drawn into a fight over property rights and an oil well.", + "episode" : 17, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 7 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262845.jpg/", + "votes" : "1", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "cast" : [ + { + "role" : "", + "name" : "Sheila DeWindt", + "order" : 0 + }, + { + "name" : "Gary Grubbs", + "role" : "", + "order" : 1 + }, + { + "name" : "Michael Bowen", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fxGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg/", + "order" : 2 + }, + { + "role" : "", + "name" : "Jack Starrett", + "order" : 3 + }, + { + "name" : "Don Hood", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Rick Fitts" + }, + { + "order" : 6, + "name" : "David Dunard", + "role" : "" + }, + { + "name" : "Bobby Jacoby", + "role" : "", + "order" : 7 + }, + { + "role" : "", + "name" : "Suzanne Dunn", + "order" : 8 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1986-02-25", + "director" : [ + "Sydney Hayers" + ], + "label" : "4x18. The Duke of Whispering Pines", + "showtitle" : "The A-Team", + "rating" : 6.5, + "writer" : [ + "Joyce E. Ehrich" + ], + "episodeid" : 2973, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 4, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E18.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262846.jpg/", + "votes" : "2", + "plot" : "One of B.A.'s old girlfriends has a problem; her husband, B.A.'s old college rival, has disappeared.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 6.5, + "default" : true + } + }, + "episode" : 18, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "seasonid" : 556, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262846.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/" + }, + "userrating" : 0, + "title" : "The Duke of Whispering Pines", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262846" + }, + "runtime" : 2700, + "lastplayed" : "" + }, + { + "label" : "4x19. Beneath the Surface", + "director" : [ + "Michael O'Herlihy", + "Lloyd J Schwartz" + ], + "firstaired" : "1986-03-04", + "cast" : [ + { + "order" : 0, + "name" : "Tom Villard", + "role" : "" + }, + { + "role" : "", + "name" : "Paxton Whitehead", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Kim Johnston Ulrich" + }, + { + "order" : 3, + "role" : "", + "name" : "Nancy Everhard" + }, + { + "order" : 4, + "name" : "MacKenzie Allen", + "role" : "" + }, + { + "order" : 5, + "role" : "", + "name" : "Carol Francis" + }, + { + "order" : 6, + "name" : "Archie Land", + "role" : "" + }, + { + "order" : 7, + "name" : "A.J. Freeman", + "role" : "" + }, + { + "name" : "Garth Honson", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Steve Vandeman" + }, + { + "name" : "Thomas Rosales Jr.", + "role" : "", + "order" : 10 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "writer" : [ + "Danny Lee Cole" + ], + "episodeid" : 2974, + "rating" : 7, + "showtitle" : "The A-Team", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "playcount" : 0, + "plot" : "Face returns to his orphanage for a reunion and meets an old friend's sister, who's worried about her brother's disappearance, and an old girlfriend, who is in cahoots with Fulbright to trap Face for the reward.", + "episode" : 19, + "ratings" : { + "default" : { + "votes" : 1, + "rating" : 7, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262847.jpg/", + "votes" : "1", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E19.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Beneath the Surface", + "seasonid" : 556, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262847.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262847" + }, + "lastplayed" : "", + "tvshowid" : 137 + }, + { + "tvshowid" : 137, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262848" + }, + "lastplayed" : "", + "seasonid" : 556, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262848.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/" + }, + "userrating" : 0, + "title" : "Mission of Peace", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E20.mp4", + "plot" : "Senior citizens hire the A-Team to protect their historic Texas mission home and tourist attraction from land developers.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7, + "default" : true, + "votes" : 3 + } + }, + "episode" : 20, + "votes" : "3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262848.jpg/", + "dateadded" : "2016-08-26 09:16:58", + "season" : 4, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "rating" : 7, + "showtitle" : "The A-Team", + "writer" : [ + "Burt Pearl", + "Steven L. Sears" + ], + "episodeid" : 2975, + "director" : [ + "Craig R. Baxley" + ], + "cast" : [ + { + "name" : "Ann Doran", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "David White" + }, + { + "order" : 2, + "role" : "", + "name" : "Ric Mancini" + }, + { + "order" : 3, + "role" : "", + "name" : "Jason Evers" + }, + { + "order" : 4, + "name" : "Nedra Volz", + "role" : "" + }, + { + "name" : "Iron Eyes Cody", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Nova Ball", + "order" : 6 + }, + { + "name" : "Michael Lally", + "role" : "", + "order" : 7 + }, + { + "name" : "Rod Stryker", + "role" : "", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "George Fisher" + }, + { + "role" : "", + "name" : "John Dresden", + "order" : 10 + }, + { + "name" : "Tom Noga", + "role" : "", + "order" : 11 + }, + { + "order" : 12, + "name" : "John Hudkins", + "role" : "" + }, + { + "order" : 13, + "role" : "", + "name" : "Glen Wilder" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-03-11", + "label" : "4x20. Mission of Peace" + }, + { + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262849.jpg/", + "votes" : "0", + "plot" : "Hulk Hogan comes to visit B.A. but the reunion is interrupted by a cry for help from a troubled youth with an alcoholic father.", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 21, + "playcount" : 0, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E21.mp4", + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262849" + }, + "runtime" : 2700, + "tvshowid" : 137, + "title" : "The Trouble With Harry", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262849.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/" + }, + "productioncode" : "", + "seasonid" : 556, + "episodeid" : 2976, + "writer" : [], + "rating" : 0, + "showtitle" : "The A-Team", + "label" : "4x21. The Trouble With Harry", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fPaul_Gleason.jpg/", + "role" : "", + "name" : "Paul Gleason" + }, + { + "order" : 1, + "role" : "", + "name" : "Billy Jayne" + }, + { + "name" : "John Hancock", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Carl Strano" + }, + { + "role" : "", + "name" : "Hulk Hogan", + "order" : 4 + }, + { + "name" : "Vic Polizos", + "role" : "", + "order" : 5 + }, + { + "name" : "William The Refrigerator Perry", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Le Tari" + }, + { + "name" : "Clare Peck", + "role" : "", + "order" : 8 + }, + { + "role" : "", + "name" : "Denise Gallup", + "order" : 9 + }, + { + "role" : "", + "name" : "Dian Gallup", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Loraine Marcus" + }, + { + "order" : 12, + "name" : "Jim Ishida", + "role" : "" + }, + { + "role" : "", + "name" : "Ernie Homes", + "order" : 13 + }, + { + "role" : "", + "name" : "Tim Brantley", + "order" : 14 + }, + { + "name" : "James DiStefano", + "role" : "", + "order" : 15 + }, + { + "order" : 16, + "name" : "Pilar Delano", + "role" : "" + }, + { + "order" : 17, + "role" : "", + "name" : "Diana Dillon" + }, + { + "role" : "", + "name" : "Mick Regan", + "order" : 18 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-03-25", + "director" : [], + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Thomas Szolski" + ], + "episodeid" : 2977, + "rating" : 0, + "showtitle" : "The A-Team", + "label" : "4x22. A Little Town With an Accent", + "firstaired" : "1986-05-06", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Noble Willingham" + }, + { + "name" : "Rex Ryon", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Robert Vilnaro" + }, + { + "order" : 3, + "name" : "Mark Lawrence", + "role" : "" + }, + { + "name" : "Kathryn Leigh Scott", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Joseph Burke" + }, + { + "order" : 6, + "role" : "", + "name" : "Alex Colon" + }, + { + "order" : 7, + "name" : "Corinne Wahl", + "role" : "" + }, + { + "order" : 8, + "role" : "", + "name" : "Raymond O'Keefe" + }, + { + "order" : 9, + "name" : "John Lawrence", + "role" : "" + }, + { + "role" : "", + "name" : "Michael Masters", + "order" : 10 + }, + { + "role" : "", + "name" : "Jim Bentley", + "order" : 11 + }, + { + "name" : "Bobby Bass", + "role" : "", + "order" : 12 + }, + { + "role" : "", + "name" : "Jack Verbois", + "order" : 13 + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "name" : "Carl Franklin", + "role" : "Capt. Crane" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [ + "Michael O'Herlihy" + ], + "uniqueid" : { + "unknown" : "262850" + }, + "runtime" : 2700, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "A Little Town With an Accent", + "seasonid" : 556, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262850.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262850.jpg/", + "votes" : "0", + "episode" : 22, + "plot" : "The A-Team discovers an organized crime kingpin believed to be dead is behind the intimidation of several gas station owners.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E22.mp4" + }, + { + "cast" : [ + { + "role" : "", + "name" : "Tia Carrere", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fs2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg/", + "order" : 0 + }, + { + "role" : "", + "name" : "Haunan Mina", + "order" : 1 + }, + { + "role" : "", + "name" : "Lena Pousette", + "order" : 2 + }, + { + "role" : "", + "name" : "George Cheung", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Sol Tragel" + }, + { + "order" : 5, + "role" : "", + "name" : "Peter MacLean" + }, + { + "role" : "", + "name" : "Sanford Clark", + "order" : 6 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1986-05-13", + "director" : [ + "Michael O'Herlihy" + ], + "label" : "4x23. The Sound of Thunder", + "showtitle" : "The A-Team", + "rating" : 6.5, + "episodeid" : 2978, + "writer" : [ + "Frank Lupo" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 4, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 4/S4E23.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262851.jpg/", + "playcount" : 0, + "episode" : 23, + "ratings" : { + "default" : { + "default" : true, + "rating" : 6.5, + "votes" : 2 + } + }, + "plot" : "General Fulbright captures the A-Team then offers to let them prove their innocence by accompanying him to Vietnam and rescuing a POW who could clear their names.", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262851.jpg/" + }, + "seasonid" : 556, + "title" : "The Sound of Thunder", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262851" + }, + "runtime" : 2700 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 5, + "label" : "5x01. Dishpan Man (1)", + "director" : [ + "Tony Mordente" + ], + "cast" : [ + { + "name" : "David Hess", + "role" : "", + "order" : 0 + }, + { + "name" : "Sandy McPeak", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "name" : "John Durbin", + "role" : "" + }, + { + "order" : 3, + "name" : "Richard Whitaker", + "role" : "" + }, + { + "role" : "", + "name" : "Patrice Chanel", + "order" : 4 + }, + { + "role" : "", + "name" : "Thomas Stoviak", + "order" : 5 + }, + { + "order" : 6, + "name" : "Douglas Johnson", + "role" : "" + }, + { + "role" : "", + "name" : "Houshang Touzie", + "order" : 7 + }, + { + "role" : "", + "name" : "Frank Moon", + "order" : 8 + }, + { + "order" : 9, + "role" : "", + "name" : "Robert Gallo" + }, + { + "name" : "Kally Lynn Pushkin", + "role" : "", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Teru Mophie" + }, + { + "name" : "Fernando Escandon", + "role" : "", + "order" : 12 + }, + { + "order" : 13, + "role" : "", + "name" : "Stanley Brock" + }, + { + "order" : 14, + "name" : "Marc Tubert", + "role" : "" + }, + { + "order" : 15, + "name" : "Hector Jaime Mercado", + "role" : "" + }, + { + "name" : "Andrew Divoff", + "role" : "", + "order" : 16 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-09-26", + "writer" : [ + "Stephen J. Cannell" + ], + "episodeid" : 2979, + "rating" : 10, + "showtitle" : "The A-Team", + "userrating" : 0, + "title" : "Dishpan Man (1)", + "seasonid" : 557, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262852.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/" + }, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262852" + }, + "lastplayed" : "", + "tvshowid" : 137, + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 10 + } + }, + "plot" : "The A-Team is blackmailed by retired General Stockwell, who kidnaps Hannibal and threatens to have him prosecuted if the A-Team fails to secure the release of hostages held on a plane in Spain.", + "episode" : 1, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262852.jpg/", + "votes" : "1", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E1.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1 + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E2.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262853.jpg/", + "votes" : "1", + "playcount" : 0, + "episode" : 2, + "plot" : "The A-Team's court martial begins and a surprising motive for the death of Colonel Morrison is revealed.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 10, + "votes" : 1 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "seasonid" : 557, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262853.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/" + }, + "userrating" : 0, + "title" : "Trial by Fire (2)", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262853" + }, + "runtime" : 2700, + "lastplayed" : "", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Byrne Piven" + }, + { + "order" : 1, + "role" : "", + "name" : "David Ackroyd" + }, + { + "order" : 2, + "role" : "", + "name" : "J.A. Preston" + }, + { + "role" : "", + "name" : "Dana Lee", + "order" : 3 + }, + { + "name" : "Robert Darnell", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Adam Gregor", + "role" : "" + }, + { + "order" : 6, + "name" : "Richard Newton", + "role" : "" + }, + { + "order" : 7, + "role" : "", + "name" : "Thu Leek" + }, + { + "name" : "Lisa Mordente", + "role" : "", + "order" : 8 + }, + { + "name" : "Rod Britt", + "role" : "", + "order" : 9 + }, + { + "order" : 10, + "role" : "", + "name" : "Guy Christopher" + }, + { + "order" : 11, + "role" : "", + "name" : "Leland Sun" + }, + { + "order" : 12, + "name" : "Sandy McPeak", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "role" : "Col. Briggs", + "name" : "Charles Napier" + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1986-10-03", + "director" : [ + "Sydney Hayers" + ], + "label" : "5x02. Trial by Fire (2)", + "showtitle" : "The A-Team", + "rating" : 10, + "writer" : [ + "Tom Blomquist" + ], + "episodeid" : 2980, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5 + }, + { + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:58", + "plot" : "General Stockwell interferes with the plans of Murdock and Frankie to free the rest of the A-Team before the Army can execute them.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 10, + "default" : true, + "votes" : 1 + } + }, + "episode" : 3, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262854.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E3.mp4", + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262854" + }, + "tvshowid" : 137, + "title" : "Firing Line (3)", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262854.jpg/" + }, + "seasonid" : 557, + "episodeid" : 2981, + "writer" : [ + "Frank Lupo" + ], + "rating" : 10, + "showtitle" : "The A-Team", + "label" : "5x03. Firing Line (3)", + "director" : [ + "Michael O'Herlihy" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Rodney Saulsberry" + }, + { + "name" : "Frank McCarthy", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "John Durbin", + "order" : 2 + }, + { + "name" : "Dan Tillis", + "role" : "", + "order" : 3 + }, + { + "name" : "Andrew Divoff", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "name" : "Thu Leek", + "role" : "" + }, + { + "name" : "Kathrine Heard", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "Dan Woren", + "role" : "" + }, + { + "order" : 8, + "role" : "", + "name" : "Tony Ciccone" + }, + { + "order" : 9, + "role" : "", + "name" : "Alison Rinehart" + }, + { + "order" : 10, + "name" : "Bill Dyer", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10, + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-10-10", + "season" : 5, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "rating" : 10, + "showtitle" : "The A-Team", + "writer" : [ + "Paul Bernbaum" + ], + "episodeid" : 2982, + "cast" : [ + { + "name" : "Alan Autry", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Bo Brudin", + "role" : "" + }, + { + "order" : 2, + "name" : "Ray Reinhardt", + "role" : "" + }, + { + "name" : "Joe Namath", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Jim Brown" + }, + { + "order" : 5, + "name" : "Judy Geeson", + "role" : "" + }, + { + "role" : "", + "name" : "John Matuszak", + "order" : 6 + }, + { + "role" : "", + "name" : "Anna Rapagna", + "order" : 7 + }, + { + "role" : "", + "name" : "Peter Frankland", + "order" : 8 + }, + { + "name" : "Frank Holms", + "role" : "", + "order" : 9 + }, + { + "order" : 10, + "name" : "Michele Hart", + "role" : "" + }, + { + "role" : "", + "name" : "Marlon McGamn", + "order" : 11 + }, + { + "order" : 12, + "role" : "", + "name" : "Raymond Elendorf" + }, + { + "order" : 13, + "name" : "Robert Anton", + "role" : "" + }, + { + "name" : "Sven Thorsen", + "role" : "", + "order" : 14 + }, + { + "role" : "", + "name" : "George Fisher", + "order" : 15 + }, + { + "order" : 16, + "name" : "Lyman Ward", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "name" : "Marla Heasley", + "role" : "Tawnia Baker", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "firstaired" : "1986-10-17", + "director" : [ + "Craig R. Baxley" + ], + "label" : "5x04. Quarterback Sneak", + "season" : 5, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E4.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262855.jpg/", + "votes" : "1", + "plot" : "The A-Team uses a football game as a cover to sneak a chemical warfare scientist out of East Germany.", + "playcount" : 0, + "episode" : 4, + "ratings" : { + "default" : { + "rating" : 10, + "default" : true, + "votes" : 1 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262855" + }, + "runtime" : 2700, + "lastplayed" : "", + "seasonid" : 557, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262855.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Quarterback Sneak" + }, + { + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262856" + }, + "lastplayed" : "", + "tvshowid" : 137, + "userrating" : 0, + "title" : "The Theory of Revolution", + "seasonid" : 557, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262856.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "plot" : "The outbreak of a revolution interferes with the planned rescue of three Americans from a Third World Country.", + "episode" : 5, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 10 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262856.jpg/", + "votes" : "1", + "dateadded" : "2016-08-26 09:16:58", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E5.mp4", + "season" : 5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Burt Pearl", + "Steven L. Sears" + ], + "episodeid" : 2983, + "showtitle" : "The A-Team", + "rating" : 10, + "label" : "5x05. The Theory of Revolution", + "director" : [ + "Sydney Hayers" + ], + "firstaired" : "1986-10-24", + "cast" : [ + { + "name" : "Castulo Guerra", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fnjap7gZlVKHMKFb0aMQB17kMUNh.jpg/", + "order" : 0 + }, + { + "order" : 1, + "name" : "Alejandro Rey", + "role" : "" + }, + { + "name" : "Tasia Valenza", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Pepe Serna", + "order" : 3 + }, + { + "role" : "", + "name" : "Vladimir Skomarovsky", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Gino Silva" + }, + { + "role" : "", + "name" : "Peter Brown", + "order" : 6 + }, + { + "order" : 7, + "name" : "Blake Conway", + "role" : "" + }, + { + "role" : "", + "name" : "Carlos Cervantes", + "order" : 8 + }, + { + "name" : "Damon Clark", + "role" : "", + "order" : 9 + }, + { + "name" : "Charles Howerton", + "role" : "", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Doran Clark" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ] + }, + { + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262857.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/" + }, + "seasonid" : 557, + "title" : "The Say U.N.C.L.E. Affair", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262857" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E6.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 10, + "votes" : 1 + } + }, + "plot" : "Stockwell is kidnapped by his former partner who has \"gone bad\" and the A-Team has 18 hours to find him or forever loose any chances of securing a pardon.", + "episode" : 6, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262857.jpg/", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5, + "director" : [ + "Michael O'Herlihy" + ], + "firstaired" : "1986-10-31", + "cast" : [ + { + "order" : 0, + "name" : "David McCallum", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Toni Attel" + }, + { + "name" : "James Saito", + "role" : "", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fJames_Saito.jpg/" + }, + { + "role" : "", + "name" : "Eric Goldner", + "order" : 3 + }, + { + "role" : "", + "name" : "Debra Sandlund", + "order" : 4 + }, + { + "name" : "Robert Covarobins", + "role" : "", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "Wendy Gordon" + }, + { + "order" : 7, + "name" : "David Gamburg", + "role" : "" + }, + { + "order" : 8, + "name" : "Hon Pare", + "role" : "" + }, + { + "order" : 9, + "name" : "April Wayne", + "role" : "" + }, + { + "role" : "", + "name" : "Pearl Huang", + "order" : 10 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "order" : 6, + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "label" : "5x06. The Say U.N.C.L.E. Affair", + "showtitle" : "The A-Team", + "rating" : 10, + "episodeid" : 2984, + "writer" : [ + "Terry D. Nelson" + ] + }, + { + "label" : "5x07. Alive at Five", + "director" : [ + "Craig R. Baxley" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Valerie Wildman" + }, + { + "role" : "", + "name" : "Richard Romanus", + "order" : 1 + }, + { + "order" : 2, + "name" : "Red West", + "role" : "" + }, + { + "role" : "", + "name" : "Linden Chiles", + "order" : 3 + }, + { + "order" : 4, + "name" : "Dennis Fimple", + "role" : "" + }, + { + "order" : 5, + "role" : "", + "name" : "Paul Sylvan" + }, + { + "role" : "", + "name" : "Lora Staley", + "order" : 6 + }, + { + "order" : 7, + "name" : "Robert Miano", + "role" : "" + }, + { + "order" : 8, + "role" : "", + "name" : "Mike Lally" + }, + { + "name" : "Parker Whitman", + "role" : "", + "order" : 9 + }, + { + "role" : "", + "name" : "Hope North", + "order" : 10 + }, + { + "role" : "", + "name" : "Jim McIntyre", + "order" : 11 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "name" : "Marla Heasley", + "role" : "Tawnia Baker" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9, + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1986-11-07", + "writer" : [ + "Bill Nuss" + ], + "episodeid" : 2985, + "rating" : 10, + "showtitle" : "The A-Team", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 5, + "episode" : 7, + "playcount" : 0, + "plot" : "Face plans to leave the A-Team but gets involved in the rescue of a newswoman from a paranoid mob chief.", + "ratings" : { + "default" : { + "rating" : 10, + "default" : true, + "votes" : 1 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262858.jpg/", + "votes" : "1", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E7.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Alive at Five", + "seasonid" : 557, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262858.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/" + }, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262858" + }, + "lastplayed" : "", + "tvshowid" : 137 + }, + { + "dateadded" : "2016-08-26 09:16:58", + "episode" : 8, + "playcount" : 0, + "plot" : "A former political adviser offers to trade a diary for a reunion with his daughter- who Face is hitting on, but Murdock learns that the man may be Face's father and the daughter Face's sister.", + "ratings" : { + "default" : { + "votes" : 2, + "default" : true, + "rating" : 8.5 + } + }, + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262859.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E8.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortepisode" : -1, + "title" : "Family Reunion", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262859.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "productioncode" : "", + "seasonid" : 557, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262859" + }, + "tvshowid" : 137, + "label" : "5x08. Family Reunion", + "director" : [ + "James Darren" + ], + "firstaired" : "1986-11-14", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Jeff Corey" + }, + { + "order" : 1, + "name" : "Terri Treas", + "role" : "" + }, + { + "name" : "Beau Billingslea", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Anna Rapagna", + "order" : 3 + }, + { + "role" : "", + "name" : "Claire Kirkconnell", + "order" : 4 + }, + { + "role" : "", + "name" : "John Carter", + "order" : 5 + }, + { + "order" : 6, + "role" : "", + "name" : "Lou Felder" + }, + { + "order" : 7, + "role" : "", + "name" : "Cory McClendon" + }, + { + "order" : 8, + "name" : "Joe Faust", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "name" : "William Lucking", + "role" : "Col. Lynch" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8, + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell", + "order" : 19 + } + ], + "episodeid" : 2986, + "writer" : [ + "Steven L. Sears" + ], + "showtitle" : "The A-Team", + "rating" : 8.5, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 5 + }, + { + "showtitle" : "The A-Team", + "rating" : 10, + "episodeid" : 2987, + "writer" : [ + "Burt Pearl" + ], + "director" : [ + "Bob Bralver" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2ffantasy%2f.actors%2fRosalind_Chao.jpg/", + "name" : "Rosalind Chao", + "role" : "" + }, + { + "name" : "Soon-Teck Oh", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fmeiy61tBgaVQlivu42f7A0xsVG1.jpg/", + "role" : "", + "name" : "Dustin Nguyen" + }, + { + "order" : 3, + "name" : "Nancy Kwan", + "role" : "" + }, + { + "order" : 4, + "name" : "Clive Rosengren", + "role" : "" + }, + { + "order" : 5, + "name" : "Dale Ishimoto", + "role" : "" + }, + { + "order" : 6, + "role" : "", + "name" : "Shelly Desai" + }, + { + "order" : 7, + "name" : "Bob Kino", + "role" : "" + }, + { + "order" : 8, + "role" : "", + "name" : "Pamela Kwong" + }, + { + "order" : 9, + "name" : "Nathan Jung", + "role" : "" + }, + { + "role" : "", + "name" : "Tom Logo", + "order" : 10 + }, + { + "role" : "Col. John \"Hannibal\" Smith", + "name" : "George Peppard", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/" + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "firstaired" : "1986-11-18", + "label" : "5x09. Point of No Return", + "season" : 5, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E9.mp4", + "dateadded" : "2016-08-26 09:16:58", + "plot" : "Stockwell refuses to allow the A-Team to go after Hannibal when he fails to check in while on a solo mission in hostile territory.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 10, + "votes" : 1 + } + }, + "episode" : 9, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262860.jpg/", + "tvshowid" : 137, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262860" + }, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262860.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 557, + "title" : "Point of No Return", + "userrating" : 0 + }, + { + "seasonid" : 557, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262861.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/" + }, + "userrating" : 0, + "title" : "The Crystal Skull", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262861" + }, + "runtime" : 2700, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E10.mp4", + "specialsortseason" : -1, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262861.jpg/", + "episode" : 10, + "plot" : "The A-Team's effort to secure a valuable religious artifact involves them with warring island tribes who mistake Murdoch for a God and some unusual missionaries.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 10, + "default" : true, + "votes" : 1 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5, + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Sam Hiana" + }, + { + "role" : "", + "name" : "Manu Tupou", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Art Tizon" + }, + { + "order" : 3, + "role" : "", + "name" : "Rochelle Ahsana" + }, + { + "name" : "Jack Verbois", + "role" : "", + "order" : 4 + }, + { + "name" : "Barry Pierce", + "role" : "", + "order" : 5 + }, + { + "name" : "Peter Iacangelo", + "role" : "", + "order" : 6 + }, + { + "name" : "Jeffrey Alan Chandler", + "role" : "", + "order" : 7 + }, + { + "order" : 8, + "name" : "Aki Aleong", + "role" : "" + }, + { + "order" : 9, + "role" : "", + "name" : "Charles Hyman" + }, + { + "order" : 10, + "name" : "Jennifer Green", + "role" : "" + }, + { + "role" : "", + "name" : "Richard Herkert", + "order" : 11 + }, + { + "order" : 12, + "role" : "", + "name" : "Titus Napoleon" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4, + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "name" : "Robert Vaughn", + "role" : "Gen. Hunt Stockwell" + } + ], + "firstaired" : "1986-11-28", + "director" : [ + "Michael O'Herlihy" + ], + "label" : "5x10. The Crystal Skull", + "showtitle" : "The A-Team", + "rating" : 10, + "writer" : [ + "Bill Nuss" + ], + "episodeid" : 2988 + }, + { + "userrating" : 0, + "title" : "The Spy Who Mugged Me", + "seasonid" : 557, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262862.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "runtime" : 2700, + "uniqueid" : { + "unknown" : "262862" + }, + "lastplayed" : "", + "tvshowid" : 137, + "playcount" : 0, + "plot" : "Murdock poses as suave secret agent to catch a killer before he can complete another assignment.", + "episode" : 11, + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 8.5, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262862.jpg/", + "votes" : "2", + "dateadded" : "2016-08-26 09:16:58", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E11.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 5, + "label" : "5x11. The Spy Who Mugged Me", + "director" : [ + "Michael O'Herlihy" + ], + "firstaired" : "1986-12-02", + "cast" : [ + { + "role" : "", + "name" : "Karen Kopins", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fRoy_Dotrice.jpg/", + "name" : "Roy Dotrice", + "role" : "" + }, + { + "name" : "Kai Wulff", + "role" : "", + "order" : 2 + }, + { + "name" : "Marianne Marks", + "role" : "", + "order" : 3 + }, + { + "role" : "", + "name" : "Professor Toru Tanaka", + "order" : 4 + }, + { + "role" : "", + "name" : "Maurice Marsal", + "order" : 5 + }, + { + "name" : "Nick Faltas", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "name" : "Ronan O'Casey", + "role" : "" + }, + { + "role" : "", + "name" : "Marius Mazmanian", + "order" : 8 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0, + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "role" : "Col. Lynch", + "name" : "William Lucking", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "order" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez" + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "name" : "Carl Franklin", + "role" : "Capt. Crane", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "writer" : [ + "Paul Bernbaum" + ], + "episodeid" : 2989, + "rating" : 8.5, + "showtitle" : "The A-Team" + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E12.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262863.jpg/", + "votes" : "2", + "playcount" : 0, + "episode" : 12, + "plot" : "The A-Team must bring a girl in who has stolen a briefcase from her father, filled with material she believes he's selling to the Soviets.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.5, + "votes" : 2 + } + }, + "dateadded" : "2016-08-26 09:16:58", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "seasonid" : 557, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262863.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Grey Team", + "tvshowid" : 137, + "uniqueid" : { + "unknown" : "262863" + }, + "runtime" : 2700, + "lastplayed" : "", + "cast" : [ + { + "order" : 0, + "name" : "Moya Kordick", + "role" : "" + }, + { + "order" : 1, + "name" : "Lew Ayres", + "role" : "" + }, + { + "name" : "Tony Steedman", + "role" : "", + "order" : 2 + }, + { + "name" : "Michael Shannon", + "role" : "", + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fMichael_Shannon.jpg/" + }, + { + "order" : 4, + "name" : "John McLiam", + "role" : "" + }, + { + "order" : 5, + "role" : "", + "name" : "Paula Victor" + }, + { + "name" : "Lynn Logos", + "role" : "", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Nick Angotti" + }, + { + "order" : 8, + "name" : "Eddie Quillan", + "role" : "" + }, + { + "order" : 9, + "role" : "", + "name" : "Roger Harris" + }, + { + "role" : "", + "name" : "Leigh Kilton", + "order" : 10 + }, + { + "order" : 11, + "role" : "", + "name" : "Allan Graf" + }, + { + "order" : 12, + "name" : "Bob Orrison", + "role" : "" + }, + { + "order" : 13, + "name" : "Paul Petersen", + "role" : "" + }, + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "role" : "Lt. Templeton \"Faceman\" Peck", + "name" : "Dirk Benedict", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus" + }, + { + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3 + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/", + "role" : "Col. Lynch", + "name" : "William Lucking" + }, + { + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "order" : 9, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "name" : "Charles Napier", + "role" : "Col. Briggs" + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "order" : 19, + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn" + } + ], + "firstaired" : "1986-12-30", + "director" : [ + "Michael O'Herlihy" + ], + "label" : "5x12. The Grey Team", + "showtitle" : "The A-Team", + "rating" : 8.5, + "writer" : [ + "Tom Blomquist" + ], + "episodeid" : 2990, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 5 + }, + { + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262864.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/" + }, + "productioncode" : "", + "seasonid" : 557, + "title" : "Without Reservations", + "userrating" : 0, + "tvshowid" : 137, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "262864" + }, + "runtime" : 2700, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/Season 5/S5E13.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:58", + "votes" : "2", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f77904%2f262864.jpg/", + "ratings" : { + "default" : { + "votes" : 2, + "rating" : 8.5, + "default" : true + } + }, + "plot" : "Frankie and Face visit Murdock at his job in a restaurant, and all three become hostages of mobsters out to kill a patron, the US Attorney General.", + "episode" : 13, + "playcount" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 5, + "firstaired" : "1987-03-08", + "cast" : [ + { + "name" : "Mills Watson", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Bobby DiCicco" + }, + { + "order" : 2, + "role" : "", + "name" : "Ely Pouget" + }, + { + "role" : "", + "name" : "Alfred Dennis", + "order" : 3 + }, + { + "order" : 4, + "role" : "", + "name" : "Lonny Chapman" + }, + { + "order" : 5, + "role" : "", + "name" : "Marc Alaimo" + }, + { + "role" : "", + "name" : "Edward Bell", + "order" : 6 + }, + { + "order" : 7, + "role" : "", + "name" : "Terrence O'Connor" + }, + { + "order" : 8, + "name" : "Chuck Walling", + "role" : "" + }, + { + "role" : "", + "name" : "Hope Marie Carlton", + "order" : 9 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith" + }, + { + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2, + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "name" : "Mr. T" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "order" : 3, + "name" : "Dwight Schultz", + "role" : "Capt. H.M. \"Howling Mad\" Murdock" + }, + { + "role" : "Tawnia Baker", + "name" : "Marla Heasley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/", + "order" : 5, + "role" : "Amy Amanda 'Triple A' Allen", + "name" : "Melinda Culea" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7, + "name" : "Lance LeGault", + "role" : "Col. Roderick Decker" + }, + { + "role" : "Frankie \"Dishpan Man\" Santana", + "name" : "Eddie Velez", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/", + "order" : 8 + }, + { + "name" : "Charles Napier", + "role" : "Col. Briggs", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "role" : "Capt. Crane", + "name" : "Carl Franklin" + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "director" : [ + "John Peter Kousakis" + ], + "label" : "5x13. Without Reservations", + "rating" : 8.5, + "showtitle" : "The A-Team", + "episodeid" : 2991, + "writer" : [ + "Bill Nuss" + ] + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x01. Pilot", + "director" : [ + "Andy Cadiff" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Katie O'Rourke", + "role" : "", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 1, + "name" : "Mary-Kathleen Gordon", + "role" : "" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2001-10-03", + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 127, + "rating" : 7.40000009536743, + "showtitle" : "According to Jim", + "userrating" : 0, + "title" : "Pilot", + "seasonid" : 14, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179979.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179979" + }, + "lastplayed" : "2017-02-06 16:36:53", + "tvshowid" : 4, + "playcount" : 1, + "plot" : "Jim and Cheryl are the perfect middle class American couple. Happily married, living in a suburban house with two adorable (but loud) little girls and a baby boy, they really can't complain much about life – except for those couple fights that neither one can ever let go, like the time Jim shut the car door on Cheryl. This time the problem is their daughter, whom Cheryl can't leave alone on her first week at kindergarten. Jim says it's because she's a woman and decides to take Ruby himself, but he also can't leave her behind. Things heat up when Cheryl discovers that not only has he been hiding it from her, but he also changed Ruby's school without talking to her. Meanwhile, Jim and Cheryl try to help Andy make up with his girlfriend.", + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 18, + "default" : true, + "rating" : 7.40000009536743 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179979.jpg/", + "votes" : "18", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E1.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "streamdetails" : { + "subtitle" : [], + "video" : [ + { + "stereomode" : "", + "width" : 480, + "height" : 360, + "duration" : 12, + "codec" : "h264", + "language" : "und", + "aspect" : 1.33333301544189 + } + ], + "audio" : [ + { + "codec" : "aac", + "language" : "und", + "channels" : 2 + } + ] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179980.jpg/", + "votes" : "18", + "plot" : "Jim and Cheryl find their romantic getaway to the Bahamas set to work out perfectly, with Dana babysitting the kids. However, at the last minute, Dana is not able to babysit. In the meantime, Andy becomes a little too obsessed with making the perfect treehouse for Grace and Ruby.", + "episode" : 2, + "playcount" : 1, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.19999980926514, + "votes" : 18 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E2.mp4", + "specialsortseason" : -1, + "lastplayed" : "2017-02-28 11:15:13", + "uniqueid" : { + "unknown" : "179980" + }, + "runtime" : 12, + "tvshowid" : 4, + "title" : "No Nookie", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179980.jpg/" + }, + "productioncode" : "", + "seasonid" : 14, + "episodeid" : 128, + "writer" : [ + "Nastaran Dibai", + "Jeffrey B. Hodes" + ], + "showtitle" : "According to Jim", + "rating" : 7.19999980926514, + "label" : "1x02. No Nookie", + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2001-10-10", + "director" : [ + "Andy Cadiff" + ], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "writer" : [ + "Tracy Gamble" + ], + "episodeid" : 129, + "showtitle" : "According to Jim", + "rating" : 7.40000009536743, + "label" : "1x03. The Cat Came Back", + "director" : [ + "Andy Cadiff" + ], + "cast" : [ + { + "order" : 0, + "name" : "Danny Breen", + "role" : "" + }, + { + "role" : "", + "name" : "Ed Lover", + "order" : 1 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2001-10-17", + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "codec" : "aac", + "language" : "und", + "channels" : 2 + } + ], + "video" : [ + { + "aspect" : 1.33333301544189, + "language" : "und", + "codec" : "h264", + "stereomode" : "", + "width" : 480, + "height" : 360, + "duration" : 12 + } + ] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "plot" : "Cheryl's 15 year-old cat Mr. Feeney dies and she wants Jim to bury it on the backyard, but Jim desperately wants to go to the Bears game. He sticks the cat in the garage freezer, planning on burying it after the game, but Cheryl finds out before he comes home. She is hurt that Jim doesn't listen to her nor care about a cat that has been longer with her than anything in her current life. Jim, feeling guilty, provides a proper funeral for Mr. Feeney and gets her a brand new dog, which she doesn't like very much at first, but starts to accept it later.", + "playcount" : 1, + "episode" : 3, + "ratings" : { + "default" : { + "votes" : 17, + "default" : true, + "rating" : 7.40000009536743 + } + }, + "votes" : "17", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179981.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E3.mp4", + "specialsortseason" : -1, + "runtime" : 12, + "uniqueid" : { + "unknown" : "179981" + }, + "lastplayed" : "2017-02-28 11:19:27", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Cat Came Back", + "seasonid" : 14, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179981.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + } + }, + { + "label" : "1x04. Anniversary", + "director" : [ + "Gil Junger" + ], + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2001-10-24", + "episodeid" : 130, + "writer" : [ + "David Feeney", + "Todd J. Greenwald" + ], + "rating" : 7.30000019073486, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "On Jim and Cheryl's 10th Anniversary, Jim pays Dana to buy him an anniversary gift to give to Cheryl. However, Dana buys a beautiful and touching charm bracelet, going over the spending limit in the process, and Cheryl finds out that all her anniversary gifts over the past ten years were bought by Dana.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.30000019073486, + "votes" : 18 + } + }, + "episode" : 4, + "playcount" : 1, + "votes" : "18", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179982.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E4.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [ + { + "duration" : 12, + "width" : 480, + "height" : 360, + "stereomode" : "", + "aspect" : 1.33333301544189, + "language" : "und", + "codec" : "h264" + } + ], + "audio" : [ + { + "codec" : "aac", + "language" : "und", + "channels" : 2 + } + ], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "Anniversary", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179982.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 14, + "lastplayed" : "2017-02-28 11:30:39", + "runtime" : 12, + "uniqueid" : { + "unknown" : "179982" + }, + "tvshowid" : 4 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "cast" : [ + { + "name" : "Ken Magee", + "role" : "", + "order" : 0 + }, + { + "name" : "Michael McManus", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Soleil Borda", + "order" : 2 + }, + { + "name" : "Steven Pierce", + "role" : "", + "order" : 3 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2001-10-31", + "director" : [ + "Andy Cadiff" + ], + "label" : "1x05. Unruly Spirits", + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "writer" : [ + "David Regal" + ], + "episodeid" : 131, + "seasonid" : 14, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179983.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Unruly Spirits", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "179983" + }, + "runtime" : 12, + "lastplayed" : "2017-02-28 11:33:57", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E5.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179983.jpg/", + "votes" : "17", + "episode" : 5, + "plot" : "It's Halloween, and Cheryl has forbidden Gracie to go trick-or-treating. However, not wanting his daughter to miss out on the fun of the halloween spirit, he sneaks her out anyway. Meanwhile, Andy becomes convinced that he's being stalked by an ex-girlfriend.", + "playcount" : 1, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.59999990463257, + "votes" : 17 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [ + { + "language" : "und", + "codec" : "aac", + "channels" : 2 + } + ], + "video" : [ + { + "codec" : "h264", + "language" : "und", + "aspect" : 1.33333301544189, + "width" : 480, + "height" : 360, + "duration" : 12, + "stereomode" : "" + } + ], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + { + "director" : [ + "Andy Cadiff" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Veronica Puleo" + }, + { + "name" : "Kevin Porter", + "role" : "", + "order" : 1 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2001-11-07", + "label" : "1x06. The Crush", + "rating" : 7.30000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "Richard Cohen" + ], + "episodeid" : 132, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E6.mp4", + "specialsortseason" : -1, + "ratings" : { + "default" : { + "votes" : 18, + "default" : true, + "rating" : 7.30000019073486 + } + }, + "plot" : "Jim sets Dana up with a guy so perfect that even Cheryl falls for him.", + "episode" : 6, + "playcount" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179984.jpg/", + "votes" : "18", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [ + { + "language" : "und", + "codec" : "h264", + "aspect" : 1.33333301544189, + "duration" : 12, + "width" : 480, + "height" : 360, + "stereomode" : "" + } + ], + "audio" : [ + { + "language" : "und", + "codec" : "aac", + "channels" : 2 + } + ] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 14, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179984.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Crush", + "tvshowid" : 4, + "runtime" : 12, + "uniqueid" : { + "unknown" : "179984" + }, + "lastplayed" : "2017-02-28 11:43:22" + }, + { + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 7.59999990463257, + "episodeid" : 133, + "writer" : [ + "Bonnie Kallman" + ], + "cast" : [ + { + "role" : "", + "name" : "Randall Arney", + "order" : 0 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2001-11-14", + "director" : [ + "Michael Lembeck" + ], + "label" : "1x07. Cheryl's Old Flame", + "tvshowid" : 4, + "lastplayed" : "2017-02-28 11:54:39", + "uniqueid" : { + "unknown" : "179985" + }, + "runtime" : 12, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179985.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "seasonid" : 14, + "title" : "Cheryl's Old Flame", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "language" : "und", + "codec" : "aac", + "channels" : 2 + } + ], + "video" : [ + { + "height" : 360, + "width" : 480, + "duration" : 12, + "stereomode" : "", + "codec" : "h264", + "language" : "und", + "aspect" : 1.33333301544189 + } + ] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E7.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "17", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179985.jpg/", + "episode" : 7, + "playcount" : 1, + "plot" : "Jim and Cheryl find themselves wondering if they've set too many rules for their household when they find themselves arguing over whether to put a TV in the girls' room, making Jim promise Cheryl not to ride his motorcycle, and Ruby then tells Jim that Cheryl has been smoking again.", + "ratings" : { + "default" : { + "votes" : 17, + "rating" : 7.59999990463257, + "default" : true + } + } + }, + { + "streamdetails" : { + "subtitle" : [], + "video" : [ + { + "codec" : "h264", + "language" : "und", + "aspect" : 1.33333301544189, + "stereomode" : "", + "duration" : 12, + "width" : 480, + "height" : 360 + } + ], + "audio" : [ + { + "channels" : 2, + "codec" : "aac", + "language" : "und" + } + ] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "plot" : "It's Thanksgiving and Jim and Andy are going bowling. Cheryl doesn't like the idea very much, so she sends the girls with him. Jim has a perfect game, but just when he was about to bowl his final strike, the power goes off and he is left with either waiting for it to return or giving up being perfect. Cheryl surprises him by bringing the Thanksgiving dinner to the alley so Jim's family and friends can witness his perfect game.", + "playcount" : 1, + "ratings" : { + "default" : { + "votes" : 18, + "default" : true, + "rating" : 7.5 + } + }, + "episode" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179986.jpg/", + "votes" : "18", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E8.mp4", + "specialsortseason" : -1, + "runtime" : 12, + "uniqueid" : { + "unknown" : "179986" + }, + "lastplayed" : "2017-02-28 11:57:49", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Turkey Bowl", + "seasonid" : 14, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179986.jpg/" + }, + "writer" : [ + "Tracy Gamble" + ], + "episodeid" : 134, + "showtitle" : "According to Jim", + "rating" : 7.5, + "label" : "1x08. The Turkey Bowl", + "director" : [ + "Gil Junger" + ], + "firstaired" : "2001-11-21", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Garrett Morris" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "streamdetails" : { + "video" : [ + { + "stereomode" : "", + "width" : 480, + "duration" : 12, + "height" : 360, + "codec" : "h264", + "language" : "und", + "aspect" : 1.33333301544189 + } + ], + "audio" : [ + { + "channels" : 2, + "codec" : "aac", + "language" : "und" + } + ], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "17", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179987.jpg/", + "episode" : 9, + "playcount" : 5, + "ratings" : { + "default" : { + "votes" : 17, + "default" : true, + "rating" : 7.40000009536743 + } + }, + "plot" : "Andy has a new girlfriend, and Cheryl wants Jim to treat her nicely because not only is she Andy's first girlfriend sine Carrie, but also Ruby's piano teacher. During dinner, Alicia tells Jim she's a vegetarian, and not only that, but also a Peckers fan – a big insult to Jim. Alicia and Andy break up and get back together, but she keeps turning down invitations to have dinner at Jim and Cheryl's. The reason? She doesn't like being around Cheryl. Jim rubs it on her face until Cheryl confronts Alicia, who reveals it's only because she thinks Cheryl's too perfect.", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E9.mp4", + "lastplayed" : "2017-02-28 12:18:10", + "uniqueid" : { + "unknown" : "179987" + }, + "runtime" : 12, + "tvshowid" : 4, + "title" : "Andy's Girlfriend", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179987.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "seasonid" : 14, + "episodeid" : 135, + "writer" : [ + "Tod Himmel" + ], + "showtitle" : "According to Jim", + "rating" : 7.40000009536743, + "label" : "1x09. Andy's Girlfriend", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Nicole Sullivan" + }, + { + "order" : 1, + "role" : "", + "name" : "Dweezil Zappa" + }, + { + "name" : "Ed Lover", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Kevin Ruff", + "role" : "" + }, + { + "role" : "", + "name" : "Willie Onelas", + "order" : 4 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2001-11-28", + "director" : [ + "Andy Cadiff" + ], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "uniqueid" : { + "unknown" : "179988" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "An According to Jiminy Christmas", + "seasonid" : 14, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179988.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179988.jpg/", + "votes" : "16", + "playcount" : 0, + "plot" : "Cheryl's mother is coming to visit them for Christmas and wants to stay at their house. Jim and Cheryl, however, prefer that she stayed at a hotel but don't know how to bring it up without insulting Maggie. After Jim tells Maggie that Cheryl wants her in a hotel, Maggie gives her grandma's pearl necklace to Dana. Cheryl's upset and goes to the airport to ask her mother' forgiveness, where she learns Dana only got the necklace because she doesn't have anyone in her life like Cheryl has Jim. Meanwhile, the girls think Andy is Santa.", + "ratings" : { + "default" : { + "votes" : 16, + "rating" : 7.59999990463257, + "default" : true + } + }, + "episode" : 10, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E10.mp4", + "specialsortseason" : -1, + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [ + "Tod Himmel" + ], + "episodeid" : 136, + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "label" : "1x10. An According to Jiminy Christmas", + "firstaired" : "2001-12-12", + "cast" : [ + { + "order" : 0, + "name" : "Kathleen Noone", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "director" : [ + "Gil Junger" + ] + }, + { + "label" : "1x11. The Bad Word", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Carol Pawlak" + }, + { + "role" : "", + "name" : "Nicole Kuwahara", + "order" : 1 + }, + { + "name" : "Soleil Borda", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Irene Roseen", + "order" : 3 + }, + { + "order" : 4, + "name" : "Dennis Cockrum", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2002-01-16", + "director" : [ + "Gil Junger" + ], + "writer" : [ + "David Regal" + ], + "episodeid" : 137, + "rating" : 7.40000009536743, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "votes" : "17", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179989.jpg/", + "episode" : 11, + "playcount" : 0, + "plot" : "Cheryl leaves Jim in charge of their kids and some other kids who were there to play with the girls during a Bears game. The next day, one of the kids mom calls Cheryl saying her daughter dame home repeating a swearing she heard from Jim. Cheryl apologizes for him and Jim is insulted that she always automatically takes the other person's side. Cheryl apologizes, and not too later Grace repeats the exact same word. Jim decides to teach her not to repeat it by making her say it non stop until she can't say it again. It works. 5 days later, at Ruby's ballet presentation, she slips, falls and says the word, unmasking Jim's guilt.", + "ratings" : { + "default" : { + "votes" : 17, + "rating" : 7.40000009536743, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E11.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "The Bad Word", + "seasonid" : 14, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179989.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "uniqueid" : { + "unknown" : "179989" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "label" : "1x12. Model Behavior", + "director" : [ + "Gil Junger" + ], + "cast" : [ + { + "name" : "Joshua Wolfe", + "role" : "", + "order" : 0 + }, + { + "role" : "", + "name" : "Justin Doran", + "order" : 1 + }, + { + "order" : 2, + "name" : "John Rubano", + "role" : "" + }, + { + "role" : "", + "name" : "Amita Balla", + "order" : 3 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2002-01-23", + "writer" : [ + "Tracy Gamble" + ], + "episodeid" : 138, + "showtitle" : "According to Jim", + "rating" : 7.30000019073486, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "episode" : 12, + "plot" : "Jim and Cheryl agree to let Ruby model for a print ad as a one-time thing, but when the photographer calls her a natural, Jim gets Ruby an agent.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.30000019073486, + "default" : true, + "votes" : 16 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179990.jpg/", + "votes" : "16", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E12.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Model Behavior", + "seasonid" : 14, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179990.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179990" + }, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "Cheryl decides to go behind Jim's back and loan Andy $1,000 for a downpayment on a new condo.", + "ratings" : { + "default" : { + "votes" : 16, + "rating" : 7.40000009536743, + "default" : true + } + }, + "episode" : 13, + "votes" : "16", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179991.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E13.mp4", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179991" + }, + "tvshowid" : 4, + "title" : "The Money", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179991.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 14, + "episodeid" : 139, + "writer" : [ + "David Feeney", + "Todd J. Greenwald" + ], + "showtitle" : "According to Jim", + "rating" : 7.40000009536743, + "label" : "1x13. The Money", + "director" : [ + "Gil Junger" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Audrey Rapoport" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2002-01-30", + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "seasonid" : 14, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179992.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Blow-Up", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179992" + }, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E14.mp4", + "specialsortseason" : -1, + "episode" : 14, + "plot" : "When Cheryl has a revealing photo of herself taken as a Valentine gift to Jim, he proudly shows it to all his friends.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.30000019073486, + "default" : true, + "votes" : 15 + } + }, + "votes" : "15", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179992.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [ + "Gil Junger" + ], + "cast" : [ + { + "order" : 0, + "name" : "Mary Randle", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2002-02-13", + "label" : "1x14. Blow-Up", + "rating" : 7.30000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "Mike Dieffenbach" + ], + "episodeid" : 140 + }, + { + "showtitle" : "According to Jim", + "rating" : 7.30000019073486, + "writer" : [ + "Richard Goodman" + ], + "episodeid" : 141, + "cast" : [ + { + "name" : "Ed Lover", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "John Rubano", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2002-02-27", + "director" : [ + "Gil Junger" + ], + "label" : "1x15. Racquetball", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E15.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179993.jpg/", + "votes" : "14", + "plot" : "When Cheryl reminds Jim that she beat him at racquetball years ago, he claims he was only letting her win to gain her affections, so Cheryl challenges him to a no-holds-barred re-match.", + "playcount" : 0, + "episode" : 15, + "ratings" : { + "default" : { + "votes" : 14, + "rating" : 7.30000019073486, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "179993" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 14, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179993.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "userrating" : 0, + "title" : "Racquetball" + }, + { + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179994" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Under Pressure", + "seasonid" : 14, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179994.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "plot" : "After Jim is diagnosed with high blood pressure, Cheryl decides to do everything to help him. She makes him special food, give him backrubs, and keeps asking about his day in order to free him from stress. But Jim doesn't know how to share so much and tells her an old financial problem of the firm. Cheryl stays up all night doing math to figure out a way out of the problem. Jim says she has a disease and is always trying to help people, which Cheryl responds with stop caring about him. In the end, they finally settle their issues when Jim says he loves her and would be a total mess without her.", + "ratings" : { + "default" : { + "rating" : 8, + "default" : true, + "votes" : 11 + } + }, + "episode" : 16, + "playcount" : 0, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179994.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E16.mp4", + "specialsortseason" : -1, + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Nastaran Dibai", + "Jeffrey B. Hodes" + ], + "episodeid" : 142, + "showtitle" : "According to Jim", + "rating" : 8, + "label" : "1x16. Under Pressure", + "director" : [ + "Gil Junger" + ], + "firstaired" : "2002-03-06", + "cast" : [ + { + "order" : 0, + "name" : "Jeffrey King", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ] + }, + { + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179995" + }, + "tvshowid" : 4, + "title" : "Date Night", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179995.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 14, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "While out for dinner and a movie, Jim loses a parking spot, and later loses Cheryl when he can't let go of it.", + "episode" : 17, + "ratings" : { + "default" : { + "rating" : 7.09999990463257, + "default" : true, + "votes" : 13 + } + }, + "votes" : "13", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179995.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E17.mp4", + "specialsortseason" : -1, + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 143, + "writer" : [ + "Richard Greenman" + ], + "rating" : 7.09999990463257, + "showtitle" : "According to Jim", + "label" : "1x17. Date Night", + "director" : [ + "Andy Cadiff" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "DeMorge Brown" + }, + { + "role" : "", + "name" : "David Greenman", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2002-03-13" + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 144, + "writer" : [ + "David Regal" + ], + "showtitle" : "According to Jim", + "rating" : 7.59999990463257, + "label" : "1x18. Birthday Boys", + "cast" : [ + { + "name" : "Jeremy Rowley", + "role" : "", + "order" : 0 + }, + { + "name" : "Jordan Black", + "role" : "", + "order" : 1 + }, + { + "name" : "Aaron Lee", + "role" : "", + "order" : 2 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2002-03-20", + "director" : [ + "Gil Junger" + ], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "179996" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Birthday Boys", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179996.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 14, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179996.jpg/", + "votes" : "13", + "plot" : "It's Kyle and Andy's birthday, and Andy is feeling a little left out of his own special day. They decide to take him to a restaurant that serves a 4,5 lbs steak, and Jim offers to pay for the check because Cheryl isn't feeling equal to Dana, who's spending a lot of money on their kids. On the table, Dana says she doesn't mind paying the check because she makes more money than Jim, which enfuriates him. He buys a donkey for the girls so they can know he's the one they should go to if they want stuff (in this case, they wanted a poney, but \"they'll never know the difference\"), and it isn't until the donkey ruins a painting Dana bought for Kyle's room that they talk it out and settle their issues.", + "episode" : 18, + "ratings" : { + "default" : { + "rating" : 7.59999990463257, + "default" : true, + "votes" : 13 + } + }, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E18.mp4", + "specialsortseason" : -1 + }, + { + "seasonid" : 14, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179997.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "userrating" : 0, + "title" : "The Receipt", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179997" + }, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E19.mp4", + "specialsortseason" : -1, + "episode" : 19, + "playcount" : 0, + "plot" : "When the new DVD player breaks, Jim must find the receipt in order to exchange it. He can't find it anywhere and blames Cheryl of losing it. She says he was the one who lost it, and in order to \"win\" the fight, Jim buys another DVD player and tells Cheryl he exchanged the broken one. Later, Dana shows up with the receipt, in which Cheryl wrote her a recipe, and Cheryl - after realizing it was her fault after all - burns it. They get into a fight but soon decide to drop the point scoring and just be happy again.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.69999980926514, + "votes" : 14 + } + }, + "votes" : "14", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179997.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [ + "Gil Junger" + ], + "firstaired" : "2002-04-24", + "cast" : [ + { + "order" : 0, + "name" : "Brian Reed Garvin", + "role" : "" + }, + { + "name" : "Jim Rash", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJim_Rash.jpg/", + "order" : 1 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "label" : "1x19. The Receipt", + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "writer" : [ + "Tod Himmel" + ], + "episodeid" : 145 + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x20. Old Friends", + "director" : [ + "Gil Junger" + ], + "cast" : [ + { + "role" : "", + "name" : "Dan Aykroyd", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Johnny Lee Schell" + }, + { + "order" : 2, + "role" : "", + "name" : "Larry Lee Lerma" + }, + { + "role" : "", + "name" : "Glen Clark", + "order" : 3 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2002-05-01", + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 146, + "showtitle" : "According to Jim", + "rating" : 7.69999980926514, + "userrating" : 0, + "title" : "Old Friends", + "seasonid" : 14, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179998.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "179998" + }, + "lastplayed" : "", + "tvshowid" : 4, + "plot" : "Jim has a run-in with an old friend from his wild and crazy days who is now a cop. Jim sets out to prove he's not an 'old married guy' by staying out all night and partying. Unfortunately, this has bad consequences for both of them...", + "playcount" : 0, + "episode" : 20, + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 14 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179998.jpg/", + "votes" : "14", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E20.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "votes" : "13", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179999.jpg/", + "plot" : "Jim agrees to take the girls for the day while Cheryl and Dana go to a doctor's appointment. At the park, Jim leaves the girls with another mom and goes to the movies... where he's busted by Cheryl. Things go from bad to worse when he tries to retrieve the kids and can't remember who he left them with.", + "episode" : 21, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.69999980926514, + "votes" : 13 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E21.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "Cheryl's Day Off", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f179999.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 14, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "179999" + }, + "runtime" : 1800, + "tvshowid" : 4, + "label" : "1x21. Cheryl's Day Off", + "cast" : [ + { + "role" : "", + "name" : "Anne Smith", + "order" : 0 + }, + { + "role" : "", + "name" : "Hira Ambrosino", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2002-05-08", + "director" : [ + "Gil Junger" + ], + "episodeid" : 147, + "writer" : [ + "Bob Nickman" + ], + "showtitle" : "According to Jim", + "rating" : 7.69999980926514, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1 + }, + { + "userrating" : 0, + "title" : "No Surprises", + "seasonid" : 14, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180000.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180000" + }, + "lastplayed" : "", + "tvshowid" : 4, + "plot" : "Jim plans a surprise party for Cheryl's birthday, but gets angry and cancels it when Dana spills the beans. To make it up to him, Cheryl plans a party for him... but he's too busy bowling to show up.", + "episode" : 22, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 13, + "rating" : 8.19999980926514, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180000.jpg/", + "votes" : "13", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 1/S1E22.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x22. No Surprises", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "role" : "", + "name" : "Doug Cameron", + "order" : 0 + }, + { + "role" : "", + "name" : "Glen Clark", + "order" : 1 + }, + { + "order" : 2, + "name" : "Brian Palermo", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Johnny Lee Schell" + }, + { + "role" : "", + "name" : "Brian Urlacher", + "order" : 4 + }, + { + "role" : "", + "name" : "Doug Decker", + "order" : 5 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2002-05-15", + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "episodeid" : 148, + "rating" : 8.19999980926514, + "showtitle" : "According to Jim" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 149, + "writer" : [ + "Bob Nickman" + ], + "rating" : 8, + "showtitle" : "According to Jim", + "label" : "2x01. The Importance of Being Jim", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2002-10-01", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180001" + }, + "tvshowid" : 4, + "title" : "The Importance of Being Jim", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180001.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 15, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 1, + "plot" : "Jim buys a digital camera from one of Dana's ex-boyfriends, and it comes with stored pictures of the woman he dumped Dana for. Cheryl thinks it will make Dana feel better if she saw how ugly the new girl is, but Jim simply deletes the pictures because they weren't important enough for him. They start a fight about what's important to each one of them and Cheryl hides his new camera. Jim tries to get back at her, unsuccessfully. When Kyle starts to take his first steps, the camera is nowhere to be found and the moment is lost forever. That's when Cheryl realizes her actions didn't do any good. They make up and agree on paying more attention to what's important to each other.", + "ratings" : { + "default" : { + "rating" : 8, + "default" : true, + "votes" : 12 + } + }, + "playcount" : 0, + "votes" : "12", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180001.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E1.mp4", + "specialsortseason" : -1 + }, + { + "userrating" : 0, + "title" : "Cars and Chicks", + "seasonid" : 15, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180002.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + }, + "productioncode" : "", + "uniqueid" : { + "unknown" : "180002" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180002.jpg/", + "plot" : "Dana needs to buy a new car and Cheryl offers to go with her, but Jim says chicks are no good buying car by themselves, because they'll get distracted with other less important things like mirrors or cup holders. Offended, Cheryl is determined to prove Jim wrong and actually gets Dana a car for a fair deal, but the car soon breaks down. Jim takes over the situation and goes down the dealership to manly handle the situation. The only thing he wasn't counting on was a very seductive female manager, who convinces Jim to trade in his minivan for a brand new sports car. Cheryl and Dana try to undo the deal, but they have no luck either. Jim and Andy return determined to overcome Gretchen's looks, but Mike Ditka's presence ruins it for them.", + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.80000019073486, + "default" : true + } + }, + "episode" : 2, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E2.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x02. Cars and Chicks", + "cast" : [ + { + "role" : "", + "name" : "John Cervenka", + "order" : 0 + }, + { + "order" : 1, + "name" : "Mike Ditka", + "role" : "" + }, + { + "role" : "", + "name" : "Cindy Crawford", + "order" : 2 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2002-10-08", + "director" : [ + "Mark Cendrowski" + ], + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "episodeid" : 150, + "showtitle" : "According to Jim", + "rating" : 7.80000019073486 + }, + { + "userrating" : 0, + "title" : "The Baby Monitor", + "seasonid" : 15, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180003.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180003" + }, + "lastplayed" : "", + "tvshowid" : 4, + "plot" : "Cheryl wants to be friends with the new couple who just moved into the neighborhood. She has to be fast and do it before they talk to anyone else and get scared of them. After lending Janet the baby monitor, Cheryl schedules dinner with the new couple and has a hard time convincing Jim to go. When they get home back from the dinner, Cheryl is thrilled that it all went very well, and they're surprised when the baby monitor picks up Ted and Janet's conversation from their bedroom. The entire family gets addicted to eavesdropping on the couple, and Jim accidentally slips Ted's nickname for his penis. The new couple is outraged, and it takes Jim to make up a story about a homosexual experience he had in college to even the score and not lose their new friends.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 8 + } + }, + "episode" : 3, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180003.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E3.mp4", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x03. The Baby Monitor", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Stacey Travis" + }, + { + "order" : 1, + "role" : "", + "name" : "Pat Finn" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2002-10-15", + "writer" : [ + "Howard J. Morris" + ], + "episodeid" : 151, + "rating" : 8, + "showtitle" : "According to Jim" + }, + { + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Mark Adair-Rios" + }, + { + "role" : "", + "name" : "Reni Santoni", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2002-10-22", + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "2x04. The Pizza Boy", + "rating" : 8.10000038146973, + "showtitle" : "According to Jim", + "writer" : [ + "Eddie Gorodetsky" + ], + "episodeid" : 152, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E4.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180004.jpg/", + "votes" : "11", + "episode" : 4, + "playcount" : 0, + "plot" : "Jim's pizza delivery boy moves in with him and Cheryl after the boy's father kicks him out of the house because of his dream of doing standup comedy.", + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 8.10000038146973, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 15, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180004.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Pizza Boy", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180004" + }, + "runtime" : 1800, + "lastplayed" : "" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [ + "David Feeney" + ], + "episodeid" : 153, + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "2x05. The Closet", + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2002-10-29", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180005" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Closet", + "seasonid" : 15, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180005.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "Jim asks Cheryl not to intrude his space in the bathroom sink and in their closet, claiming she takes up too much space, and worse, HIS space. Cheryl tries to do something about by getting rid of some of her stuff, but Dana tells her it's time for women everywhere to show men they also have a need for space. Therefore, instead of doing what Jim asked her to, Cheryl buys even more clothes to jam up the closet. As a revenge, Jim decides to decorate their room in his own way. That starts a feud between them, until Jim falls down from the attic on their bed, breaking through the ceiling. He tells Cheryl that he needs his own space, and not because her stuff annoys him, but because he has the need to feel safe from the world sometimes. They settle their feud and agree on respecting each other's spaces.", + "episode" : 5, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.90000009536743, + "votes" : 12 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180005.jpg/", + "votes" : "12", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E5.mp4" + }, + { + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "episodeid" : 154, + "writer" : [ + "Howard J. Morris" + ], + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "name" : "Todd Sandler", + "role" : "", + "order" : 0 + }, + { + "name" : "Berglind Icey", + "role" : "", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2002-11-05", + "label" : "2x06. Punch & Ruby", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E6.mp4", + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "playcount" : 0, + "episode" : 6, + "plot" : "Jim is taking the girls to their first Bears football game, and Cheryl asks him to be a good role model and try his best not to swear in front of them. At the game, Jim picks a fight with a Packers fan who was swearing in front of the girls, and the entire fight is televised, with Jim getting the nickname of \"Packers Smacker\". He finds glory with such nickname, but Cheryl doesn't like it at all. It only hits Jim the effects his actions might have on his children when Ruby hits Gracie in the nose. Jim has to have a talk with Ruby and hear Cheryl says that the next time he finds himself in a situation like on the football game, that he should just think what she would do and do it. But Jim finds redemption when Gracie refuses to eat sundae fudge because she thinks her butt's too big – something Cheryl was saying around the house not too long ago.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180006.jpg/", + "votes" : "12", + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180006" + }, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180006.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 15, + "title" : "Punch & Ruby", + "userrating" : 0 + }, + { + "episodeid" : 155, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "label" : "2x07. The Bachelor", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2002-11-12", + "cast" : [ + { + "role" : "", + "name" : "Trista Rehn", + "order" : 0 + }, + { + "name" : "Doug Savant", + "role" : "", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Dana gets selected to be on the reality show The Bachelor. At first she's sure her personality alone will be enough to entertain the guy, but Jim gives her advice on how to behave and what to say to the guy. Dana thinks he's full of crap, but after her date goes bad she tries Jim's recipe and scores a second date. She arranges with Cheryl to bring the bachelor over to their house for dinner, and Cheryl couldn't be more thrilled to be on national television with a remodeled house. Jim is also very proud that Dana only got so far thanks to him, but the situation quickly takes an unexpected turn when Jim accidentally overhears the bachelor saying Dana will be easy to bring to bed and then he'll dump her. Now he goes out of his way to save Dana and ends up scaring the guy away with stories about Dana being a psycho. Later he explains to her his behavior and says she'll meet someone who's good enough for her.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 8.10000038146973, + "default" : true + } + }, + "episode" : 7, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180007.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E7.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180007" + }, + "tvshowid" : 4, + "title" : "The Bachelor", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180007.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 15 + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [ + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fChris_Elliott.jpg/", + "order" : 0, + "name" : "Chris Elliott", + "role" : "" + }, + { + "name" : "Adam Cagley", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Zack Shada", + "order" : 2 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2002-11-19", + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "2x08. Father Disfigure", + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "writer" : [ + "Harry Hannigan" + ], + "episodeid" : 156, + "seasonid" : 15, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180008.jpg/" + }, + "userrating" : 0, + "title" : "Father Disfigure", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180008" + }, + "runtime" : 1800, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E8.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180008.jpg/", + "votes" : "12", + "plot" : "Cheryl drags Jim down to the church for the new reverend's mess, which is supposed to be \"the next best thing\". Jim sees some familiarity on him, and remembers he was the kid he played dodge-ball with back when they were kids. Jim also remembers that he threw the ball so hard at the guy he got a fat lip (and a funny nickname) for weeks (the nickname lasted for years). When Cheryl invites the reverend over for dinner, Jim freaks out, hoping he won't remember a thing. But Jim's hopes go down the drain when the reverend confronts him and later quits the church, giving his inability to forgive Jim as a reason. Feeling guilty, Jim apologizes and even takes on Gracie and Ruby's advice on offering Reverend Pierson a chance to throw a dodge-ball back at him.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.10000038146973, + "votes" : 12 + } + }, + "episode" : 8, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E9.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180009.jpg/", + "votes" : "12", + "playcount" : 0, + "episode" : 9, + "plot" : "Cheryl is thrilled when she is offered to be in charge of the set of the girls's Thanksgiving school play. She asks Jim to help her, and he's complaining they don't spend any time together because there's always someone around them. When they finally get alone on the set, they decide to be a little wild and do it behind the Plymouth rock. Unfortunately, Andy and the PTA president walk in on them. They promise to keep it quiet, but Jim and his big mouth brag about it with a divorced father who criticized married life. When Jim and Cheryl's sexual adventures are spread around the PTA board, Cheryl is fired from her set duties, and Jim, feeling guilty about it, stays up all night to finish the job for Cheryl.", + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 8 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "seasonid" : 15, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180009.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Thanksgiving Confidential", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180009" + }, + "runtime" : 1800, + "lastplayed" : "", + "cast" : [ + { + "name" : "Julia Sweeney", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fhy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg/", + "order" : 0 + }, + { + "role" : "", + "name" : "Donald Sage MacKay", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2002-11-26", + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "2x09. Thanksgiving Confidential", + "rating" : 8, + "showtitle" : "According to Jim", + "writer" : [ + "Nastaran Dibai", + "Jeffrey B. Hodes" + ], + "episodeid" : 157, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180010.jpg/", + "votes" : "10", + "playcount" : 0, + "episode" : 10, + "plot" : "Jim's feud with a neighbor may also prompt one with Cheryl, who preaches peace so they'll be invited to the neighbors' Christmas party.", + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 10 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E10.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "The Christmas Party", + "userrating" : 0, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180010.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + }, + "seasonid" : 15, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180010" + }, + "runtime" : 1800, + "tvshowid" : 4, + "label" : "2x10. The Christmas Party", + "cast" : [ + { + "role" : "", + "name" : "Paul Schackman", + "order" : 0 + }, + { + "name" : "Stephen Root", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Robin Krieger", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Barry Brookshire" + }, + { + "order" : 4, + "role" : "", + "name" : "Bobby Block" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2002-12-10", + "director" : [ + "Brian K. Roberts" + ], + "episodeid" : 158, + "writer" : [ + "Bob Nickman" + ], + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2 + }, + { + "label" : "2x11. The Brother-in-Law", + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2002-12-17", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Brad Paisley" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "writer" : [ + "Jonathan Stark" + ], + "episodeid" : 159, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "playcount" : 0, + "plot" : "Eddie, a country musician who's dating Dana, comes between Jim and his brother-in-law Andy. After hearing Jim and Andy's band practice, Eddie invites them to perform with him at the House of Blues. The catch: Eddie plays keyboards instead of Andy. An excited Jim accepts anyway and hopes to keep the gig a secret from Andy, who, of course, finds out. Encouraged by his sisters, the left-out architect decides to even the score by exploring new business horizons-without his contractor-partner Jim.", + "episode" : 11, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 9 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180011.jpg/", + "votes" : "9", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E11.mp4", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "The Brother-in-Law", + "seasonid" : 15, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180011.jpg/" + }, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180011" + }, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E12.mp4", + "episode" : 12, + "plot" : "Jim takes advantage of a billing error on his credit card by using the windfall to treat Cheryl to an expensive romantic weekend.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 7.5 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180012.jpg/", + "votes" : "12", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180012" + }, + "lastplayed" : "", + "seasonid" : 15, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180012.jpg/" + }, + "userrating" : 0, + "title" : "Moral Dilemma", + "rating" : 7.5, + "showtitle" : "According to Jim", + "writer" : [ + "Mark Driscoll" + ], + "episodeid" : 160, + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2003-01-07", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Mark Capri" + }, + { + "order" : 1, + "name" : "Oleg Stefan", + "role" : "" + }, + { + "role" : "", + "name" : "Vahe Bejanyan", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "label" : "2x12. Moral Dilemma", + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "title" : "You Gotta Love Somebody (1)", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180013.jpg/" + }, + "productioncode" : "", + "seasonid" : 15, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180013" + }, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Jim's old friend Danny visits him, and brings his partner in crime, Laraine, with him. Cheryl and Dana offer to help Laraine pick out a dress for the police ball, and after realizing she has feelings for Danny, Cheryl convinces Jim to talk to Danny about asking her to the ball. Cheryl reveals to Jim that if it wasn't for Danny, they might never have gotten together, as they remember the time they met at a bar back in the 80's. But when Danny finally has the guts to talk to Laraine, he finds out that Andy already asked her out. Dana asks why can't she be Danny's date, since she made out with Cheryl's boyfriend the night she met Jim just so he would get out of the way. They all try to convince Andy to step aside what could be true love, but Andy reminds them of how he pretended to have a heart attack just so Jim would get rid of his girlfriend the night he met Cheryl. Finally, Andy agrees to help Danny and Laraine, as Jim and Cheryl conclude that despite all the help they got they still would have met.", + "episode" : 13, + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.90000009536743, + "default" : true + } + }, + "playcount" : 0, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180013.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E13.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "label" : "2x13. You Gotta Love Somebody (1)", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2003-01-21", + "cast" : [ + { + "role" : "", + "name" : "Jill Matson", + "order" : 0 + }, + { + "role" : "", + "name" : "Paul Vinson", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Brad Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fstc0H1GhIaLF4MAHh0rNVgxKlfn.jpg/", + "order" : 3, + "name" : "Laraine Newman", + "role" : "" + }, + { + "name" : "Dan Aykroyd", + "role" : "", + "order" : 4 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "episodeid" : 161, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "rating" : 7.90000009536743, + "showtitle" : "According to Jim" + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "name" : "Jill Matson", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Paul Vinson", + "role" : "" + }, + { + "order" : 2, + "name" : "Brad Paisley", + "role" : "" + }, + { + "role" : "", + "name" : "Dan Aykroyd", + "order" : 3 + }, + { + "name" : "Laraine Newman", + "role" : "", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fstc0H1GhIaLF4MAHh0rNVgxKlfn.jpg/" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-01-21", + "label" : "2x14. You Gotta Love Somebody (2)", + "rating" : 8.19999980926514, + "showtitle" : "According to Jim", + "episodeid" : 162, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180014.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 15, + "title" : "You Gotta Love Somebody (2)", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180014" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E14.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Jim's old friend Danny visits him, and brings his partner in crime, Laraine, with him. Cheryl and Dana offer to help Laraine pick out a dress for the police ball, and after realizing she has feelings for Danny, Cheryl convinces Jim to talk to Danny about asking her to the ball. Cheryl reveals to Jim that if it wasn't for Danny, they might never have gotten together, as they remember the time they met at a bar back in the 80's. But when Danny finally has the guts to talk to Laraine, he finds out that Andy already asked her out. Dana asks why can't she be Danny's date, since she made out with Cheryl's boyfriend the night she met Jim just so he would get out of the way. They all try to convince Andy to step aside what could be true love, but Andy reminds them of how he pretended to have a heart attack just so Jim would get rid of his girlfriend the night he met Cheryl. Finally, Andy agrees to help Danny and Laraine, as Jim and Cheryl conclude that despite all the help they got they still would have met.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 8.19999980926514, + "default" : true, + "votes" : 10 + } + }, + "episode" : 14, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180014.jpg/", + "votes" : "10", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Cheryl disapproves of Jim's latest idea, a flatulent doll named Gassy Gus, but he gets support from Andy, who builds the protoype, and Dana, who locates investors.", + "episode" : 15, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.69999980926514, + "votes" : 10 + } + }, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180015.jpg/", + "votes" : "10", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E15.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "The Smell of Success", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180015.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 15, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180015" + }, + "tvshowid" : 4, + "label" : "2x15. The Smell of Success", + "director" : [ + "Shelley Jensen" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Andrea Walters" + }, + { + "role" : "", + "name" : "Philip Bolden", + "order" : 1 + }, + { + "name" : "Ben Falcone", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2f6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg/", + "order" : 2 + }, + { + "role" : "", + "name" : "Andre Ware", + "order" : 3 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2003-01-28", + "episodeid" : 163, + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2 + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 164, + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "label" : "2x16. Slumber Party", + "cast" : [ + { + "order" : 0, + "name" : "Lauren Antariksa", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Grace Rowe" + }, + { + "name" : "Elizabeth Anne Smith", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Emily Rose Montgomery", + "order" : 3 + }, + { + "name" : "Sara Alcaraz", + "role" : "", + "order" : 4 + }, + { + "order" : 5, + "role" : "", + "name" : "Kyle Chavarria" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-02-04", + "director" : [ + "Philip Charles MacKenzie" + ], + "uniqueid" : { + "unknown" : "180016" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Slumber Party", + "seasonid" : 15, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180016.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180016.jpg/", + "episode" : 16, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.90000009536743, + "default" : true + } + }, + "plot" : "When Cheryl gets sick on the day of Ruby's birthday party, Jim is stuck trying to entertain a house full of little girls.", + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E16.mp4", + "specialsortseason" : -1 + }, + { + "episodeid" : 165, + "writer" : [ + "David Feeney" + ], + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "2x17. The Ring", + "director" : [ + "Brian K. Roberts" + ], + "cast" : [ + { + "name" : "Rob Adams", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Crystal Bernard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-02-11", + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 17, + "plot" : "When Jim and Cheryl run into his old girlfriend, Jim worries that Cheryl may find out the truth about his past when she invites the woman to dinner.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.90000009536743, + "votes" : 11 + } + }, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180017.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E17.mp4", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180017" + }, + "tvshowid" : 4, + "title" : "The Ring", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180017.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "seasonid" : 15 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [ + "Peter Beyt" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Jeff Lewis" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-02-18", + "label" : "2x18. Wonder Woman", + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "writer" : [ + "Ron Hart" + ], + "episodeid" : 166, + "seasonid" : 15, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180018.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Wonder Woman", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180018" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E18.mp4", + "ratings" : { + "default" : { + "rating" : 7.59999990463257, + "default" : true, + "votes" : 11 + } + }, + "episode" : 18, + "playcount" : 0, + "plot" : "Cheryl is mugged at the mall parking lot, but instead of calling the police she chases the guy and tackles him to get her purse bag. When she tells Jim what happened, he decides to get two killer German shepherd to guard her. Cheryl doesn't like the idea, especially because the dogs are trained in German. One night, when the girls and Kyle are sleeping over at Dana's, Jim and Cheryl get locked into the bathroom after they mistakenly order the dogs to attack them and don't know how to order them to stop. The solution? Give the dogs drowsy medication. After that, Jim and Cheryl acknowledge that they could actually lose each other and start being warmer with one another.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180018.jpg/", + "votes" : "11", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "cast" : [ + { + "order" : 0, + "name" : "Kevin Sorbo", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2003-02-25", + "director" : [ + "Mark Cendrowski" + ], + "label" : "2x19. The Pass", + "rating" : 8, + "showtitle" : "According to Jim", + "writer" : [ + "David Feeney" + ], + "episodeid" : 167, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E19.mp4", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180019.jpg/", + "episode" : 19, + "playcount" : 0, + "plot" : "Cheryl's upset when a wealthy client, a former high school buddy of Jim's, makes a pass at her, but it's Jim's reaction that she's upset about.", + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 8, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "seasonid" : 15, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180019.jpg/" + }, + "userrating" : 0, + "title" : "The Pass", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180019" + }, + "runtime" : 1800, + "lastplayed" : "" + }, + { + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "When Jim vociferously objects to the way Dana gets treated by her boss, he succeeds in getting her fired. Meanwhile, Andy has problems with the plans for his birthday party.", + "episode" : 20, + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 7.69999980926514 + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180020.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E20.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180020" + }, + "tvshowid" : 4, + "title" : "Dana Gets Fired", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180020.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "seasonid" : 15, + "episodeid" : 168, + "writer" : [ + "Howard J. Morris" + ], + "showtitle" : "According to Jim", + "rating" : 7.69999980926514, + "label" : "2x20. Dana Gets Fired", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "role" : "", + "name" : "Patrick Cassidy", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-03-11", + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 169, + "writer" : [ + "Bob Nickman" + ], + "showtitle" : "According to Jim", + "rating" : 7.59999990463257, + "label" : "2x21. Bo Diddley", + "cast" : [ + { + "role" : "", + "name" : "Bo Diddley", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Robin Krieger" + }, + { + "name" : "Steve Susskind", + "role" : "", + "order" : 2 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2003-04-01", + "director" : [ + "Shelley Jensen" + ], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180021" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Bo Diddley", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180021.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 15, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180021.jpg/", + "playcount" : 0, + "plot" : "Cheryl has to have dental surgery and asks Jim to stay besides her the whole time because she's scared of dentists. While Cheryl is sedated, Andy shows up saying he met blues legend Bo Diddley and Jim decides to meet him too, leaving Cheryl unattended. There's no harm since she's sedated, he justifies. But Cheryl finds out when Bo Diddley sends Jim a thank you basket with edible goodies and Jim confesses. They have a fight and the next day Cheryl goes out to the movies, leaving Jim in charge of the kids. Coincidentally, tickets for Bo Diddley's concert arrive at the house, but Jim wonders if that's some of Cheryl's tests. He goes but changes his mind and return to his kids at home.", + "episode" : 21, + "ratings" : { + "default" : { + "rating" : 7.59999990463257, + "default" : true, + "votes" : 9 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E21.mp4" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180022.jpg/", + "votes" : "8", + "plot" : "Cheryl makes friends with another mom from the girls soccer team. The woman is sweet, yet a bit obnoxious. Jim is annoyed by her presence, but Cheryl insists on him being nice to her. Little by little, Cindy starts to get into their lives and tell them what to do and not to do. Jim ends up buying a hot tub from her husband, thinking that might drive them away, but instead it only pulls them closer. They show up unexpectedly on the tub, which is the final drop for Jim. He tells Cheryl it's time for her to come clean and confess to Cindy that they don't like her. Just when she finally does that, Cindy's husband offers Jim season tickets for the Bears. In order to undo the break up he asked Cheryl to do, Jim tells Cindy that Cheryl is under medication for mood swings and that he's willing to do them anything. They move in for a week, while Cheryl decides to take some time off at her sister's \"for mental health\".", + "episode" : 22, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E22.mp4", + "uniqueid" : { + "unknown" : "180022" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Deal with the Devlins", + "seasonid" : 15, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180022.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Christopher J. Nowak" + ], + "episodeid" : 170, + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "2x22. Deal with the Devlins", + "firstaired" : "2003-04-01", + "cast" : [ + { + "name" : "Cynthia Stevenson", + "role" : "", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fb59DN25UqjxOLHVBFLMtbiOwn0W.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2feijzmkkXb4NstAdvpMZ1m91cRxY.jpg/", + "role" : "", + "name" : "Tim Bagley" + }, + { + "name" : "Laken Blevins", + "role" : "", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "director" : [ + "James Belushi" + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "seasonid" : 15, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180023.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + }, + "userrating" : 0, + "title" : "The Helmet", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180023" + }, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E23.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "plot" : "Pretending to be a man for an online auction, Cheryl discovers that Jim is bidding on memorabilia instead of shopping for a new dryer, but Jim thinks he's found a kindred spirit.", + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 10 + } + }, + "episode" : 23, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180023.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2003-04-08", + "label" : "2x23. The Helmet", + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "writer" : [ + "David Feeney" + ], + "episodeid" : 171 + }, + { + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "plot" : "A trained bird flies into Andy's head in the backyard and Gracie adopts it as her bird pet, Daphne. The bird is driving everyone insane and they all can't wait to get rid of it, but unfortunately Gracie developed a deep emotional attachment to it. When someone leaves the window opened and the bird flies out in the middle of the night, Jim and Andy team up to go look for it at the park the next morning. When they spot the bird, their first reaction is not to tell Gracie, but Jim doesn't want to lie to his daughter anymore. Later, the real owner show up at the house and Gracie is forced to say goodbye to her feathered friend. Or is the thought of running away to Mexico more appealing than that?", + "playcount" : 0, + "episode" : 24, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.5, + "votes" : 8 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180024.jpg/", + "votes" : "8", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E24.mp4", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180024" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "No Harm, No Fowl", + "seasonid" : 15, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180024.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Harry Hannigan" + ], + "episodeid" : 172, + "rating" : 8.5, + "showtitle" : "According to Jim", + "label" : "2x24. No Harm, No Fowl", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "name" : "Angee Hughes", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Jack Coleman" + }, + { + "name" : "Ryan McPartlin", + "role" : "", + "order" : 2 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2003-04-29", + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x25. About a Girl", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "name" : "Matt Roth", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Megan Taylor Harvey" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-05-06", + "episodeid" : 173, + "writer" : [ + "Sylvia Green" + ], + "rating" : 8, + "showtitle" : "According to Jim", + "title" : "About a Girl", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180025.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 15, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180025" + }, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Dana gets attention from a single father she meets in the park by pretending to be Ruby's mother. Meanwhile, Cheryl requests that Jim exercise more often - as a special favor to her.", + "episode" : 25, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180025.jpg/", + "votes" : "10", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E25.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "playcount" : 0, + "episode" : 26, + "plot" : "Cheryl is suspicious of her recently widowed mother's new fiance, but Jim and Andy think he's great.", + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8.10000038146973 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180026.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E26.mp4", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180026" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Mom's Boyfriend", + "seasonid" : 15, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180026.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Mark Driscoll" + ], + "episodeid" : 174, + "rating" : 8.10000038146973, + "showtitle" : "According to Jim", + "label" : "2x26. Mom's Boyfriend", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2003-05-13", + "cast" : [ + { + "role" : "", + "name" : "John Getz", + "order" : 0 + }, + { + "order" : 1, + "name" : "Anastasia Sakelaris", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "writer" : [ + "Bob Nickman" + ], + "episodeid" : 175, + "showtitle" : "According to Jim", + "rating" : 8.30000019073486, + "label" : "2x27. Vegas, Baby (1)", + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2003-05-20", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJennifer_Coolidge.jpg/", + "name" : "Jennifer Coolidge", + "role" : "" + }, + { + "name" : "Wayne Newton", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Tom Cassell" + }, + { + "order" : 3, + "name" : "Cyndi Martino", + "role" : "" + }, + { + "role" : "", + "name" : "Steve Murphy", + "order" : 4 + }, + { + "role" : "", + "name" : "Betty Bunch", + "order" : 5 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "ratings" : { + "default" : { + "rating" : 8.30000019073486, + "default" : true, + "votes" : 6 + } + }, + "plot" : "Jim and Andy are going to Vegas on a business trip and ask Dana to join them, since they need an extra help and she happens to be their \"rabbit's foot\" on gambling. Cheryl decides to join them and blackmails Jim when he says no at first. Cheryl has been secretly in touch with Jim's estranged sister Roxanne and plans for them to meet in Vegas. When they get there, Jim is not pleased to see his sister and tells Cheryl that no matter what she said he's sure she hasn't changed at all. Roxanne says she needs 2.000 dollars to start her business, which Jim takes as the first step on her plan, but Roxanne won't take either his or Cheryl's money. Instead, she gets it from her new husband: Andy, who has fallen head over heels for her and married her while the rest of the family was watching a show.", + "episode" : 27, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180027.jpg/", + "votes" : "6", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E27.mp4", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180027" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Vegas, Baby (1)", + "seasonid" : 15, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180027.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + } + }, + { + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "episodeid" : 176, + "showtitle" : "According to Jim", + "rating" : 7.19999980926514, + "label" : "2x28. Vegas, Baby (2)", + "cast" : [ + { + "name" : "Jennifer Coolidge", + "role" : "", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJennifer_Coolidge.jpg/" + }, + { + "role" : "", + "name" : "Wayne Newton", + "order" : 1 + }, + { + "order" : 2, + "name" : "Loren Lazerine", + "role" : "" + }, + { + "name" : "Steve Murphy", + "role" : "", + "order" : 3 + }, + { + "name" : "Eric Payne", + "role" : "", + "order" : 4 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2003-05-20", + "director" : [ + "Mark Cendrowski" + ], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180028.jpg/", + "votes" : "9", + "episode" : 28, + "plot" : "Andy is upset because no one approves or believes in his marriage to Roxanne. Jim goes to talk to her and walks in on her packing to run off with her ex boyfriend. He tries to stop her, unsuccessfully. Jim and Cheryl try to break the news to Andy before the business presentation, but he's so upset that he breaks down in tears on stage. While consoling Andy, Jim forgets about the foam hose and foam just floods the stage. Jim and Cheryl stroll in Las Vegas, glad that Andy is finally recovering from Roxanne and glad that their trip is over.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.19999980926514, + "default" : true, + "votes" : 9 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 2/S2E28.mp4", + "uniqueid" : { + "unknown" : "180028" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Vegas, Baby (2)", + "seasonid" : 15, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180028.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "" + }, + { + "season" : 3, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 8, + "writer" : [ + "David Feeney" + ], + "episodeid" : 177, + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Steve Nevil" + }, + { + "order" : 1, + "name" : "Andy Morrow", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-09-23", + "label" : "3x01. The Errand", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180029" + }, + "lastplayed" : "", + "seasonid" : 16, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180029.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "userrating" : 0, + "title" : "The Errand", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E1.mp4", + "specialsortseason" : -1, + "episode" : 1, + "plot" : "When Jim finds out that Cheryl has been paying 7 dollars to have the groceries delivered to their house, he insists that he does the shopping himself in order to save that incredible amount of money. Once at the supermarket, he sees how married men are \"domesticated\" by their wives and decides to rebel against Cheryl by shopping everything but the items on the list. Cheryl decides to turn the table on Jim and he does the same, until they end up going to a formal party on robes and underwear with their bodies all painted with lipstick. Cheryl finally gives in and they settle on paying the delivery boy the seven dollars in order to spare the Spice Channel subscription.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 13 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180029.jpg/", + "votes" : "13", + "dateadded" : "2016-08-26 09:16:59" + }, + { + "seasonid" : 16, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180030.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "userrating" : 0, + "title" : "The Packer Ball", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180030" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E2.mp4", + "episode" : 2, + "playcount" : 0, + "plot" : "Jim is horrified when he sees his son Kyle with a green Packers ball. He tries by all means to change it for a Bears one, but the kid just can't let go of the green ball. Jim has nightmares about it and takes Kyle to his work in another attempt to get rid of the Packers ball. When he realizes there's nothing he can do about it, he does a little alteration on the ball so they can go to the Bears game peacefully.", + "ratings" : { + "default" : { + "votes" : 13, + "rating" : 7.30000019073486, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180030.jpg/", + "votes" : "13", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "role" : "", + "name" : "Christopher T. Wood", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2f2JmRhIlnFg1CZKivLBgmJ4kksMd.jpg/" + }, + { + "name" : "Jeffrey Scott Kelly", + "role" : "", + "order" : 1 + }, + { + "name" : "Mark Beltzman", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Reginald James", + "order" : 3 + }, + { + "name" : "Christopher Gehrman", + "role" : "", + "order" : 4, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fChristopher_Gehrman.jpg/" + }, + { + "order" : 5, + "name" : "Michael Balin", + "role" : "" + }, + { + "order" : 6, + "role" : "", + "name" : "John Maynard" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2003-09-30", + "label" : "3x02. The Packer Ball", + "rating" : 7.30000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "Howard J. Morris" + ], + "episodeid" : 178 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E3.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "plot" : "Jim wrestles with his conscience after he cheats at a church fundraiser bingo game.", + "episode" : 3, + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180031.jpg/", + "votes" : "12", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "seasonid" : 16, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180031.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "We Have a Bingo", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180031" + }, + "lastplayed" : "", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fChris_Elliott.jpg/", + "role" : "", + "name" : "Chris Elliott" + }, + { + "order" : 1, + "name" : "Eve Brenner", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-10-07", + "label" : "3x03. We Have a Bingo", + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "episodeid" : 179, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "label" : "3x04. Getting to Know You", + "director" : [ + "Mark Cendrowski" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "James Ishida" + }, + { + "role" : "", + "name" : "Chris Dollard", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2003-10-14", + "episodeid" : 180, + "writer" : [ + "Bob Nickman" + ], + "showtitle" : "According to Jim", + "rating" : 7.69999980926514, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "Cheryl says a friend of hers got jewelry for his wife for no reason and Jim says he's probably cheating on her. After Cheryl takes it offensively that Jim won't buy her jewelry because he doesn't think he has to – after all, they are married and he isn't cheating – he goes out to shop for earrings, only to find out he knows nothing about Cheryl. After spending three days dedicating himself entirely to paying attention to Cheryl – with a bit of Andy's help – Jim finds out that Cheryl's friend was indeed cheating and they finally make up.", + "episode" : 4, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.69999980926514, + "votes" : 12 + } + }, + "votes" : "12", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180032.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E4.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "Getting to Know You", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180032.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180032" + }, + "tvshowid" : 4 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E5.mp4", + "specialsortseason" : -1, + "votes" : "13", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180033.jpg/", + "plot" : "Jim and Cheryl encourage the girls to make a lemonade stand and raise money for their scooters. What was supposed to be a lesson about the value of the dollar turns into a racy competition among neighbors when Bill and his next door neighbor Driscoll set up little amusement parks in their years. Dana and Andy pitch in, while Cheryl tries to stay out of it – until she gets into a catfight with the neighbor's wife. Once the police is called in, Jim realizes he's lost the purpose of the lemonade stand and decides to give the girls the rest of the money for the scooters.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 13, + "default" : true, + "rating" : 8 + } + }, + "episode" : 5, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "seasonid" : 16, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180033.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "userrating" : 0, + "title" : "The Lemonade Stand", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180033" + }, + "runtime" : 1800, + "lastplayed" : "", + "firstaired" : "2003-10-21", + "cast" : [ + { + "name" : "Hunter Gomez", + "role" : "", + "order" : 0 + }, + { + "name" : "Robin Krieger", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Grace Rowe" + }, + { + "role" : "", + "name" : "Kevin Chamberlin", + "order" : 3 + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJane_Lynch.jpg/", + "order" : 4, + "name" : "Jane Lynch", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "director" : [ + "Mark Cendrowski" + ], + "label" : "3x05. The Lemonade Stand", + "showtitle" : "According to Jim", + "rating" : 8, + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 181, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "name" : "Susan Mackin", + "role" : "", + "order" : 0 + }, + { + "role" : "", + "name" : "Tom Bergeron", + "order" : 1 + }, + { + "name" : "Brooks Almy", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Elizabeth Anne Smith" + }, + { + "order" : 4, + "role" : "", + "name" : "Hira Ambrosino" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2003-10-21", + "label" : "3x06. ABC's and 123's", + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "episodeid" : 182, + "writer" : [ + "Warren Bell" + ], + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180034.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "title" : "ABC's and 123's", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180034" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E6.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 6, + "plot" : "Trying to lighten Ruby's homework load – and therefore look like he's helping her – Jim tells Ruby's teacher that Cheryl can't read.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180034.jpg/", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + } + }, + { + "title" : "Dana Dates Jim", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180035.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 16, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180035" + }, + "runtime" : 1800, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180035.jpg/", + "votes" : "13", + "plot" : "It's Halloween and Cheryl is trying to host \"the\" party so she can own Halloween in the neighborhood. Dana brings in her newest date, Hank, who carries an awful lot of similarities to Jim. While refusing to admit she's dating Jim, Dana realizes the truth when she accidentally pinches Jim's butt thinking it was Hank. The next day she and Cheryl have a fight over the whole situation, which leaves it up to Jim and Andy to fix the friendship between the two sisters.", + "playcount" : 0, + "episode" : 7, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 13 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E7.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3, + "label" : "3x07. Dana Dates Jim", + "firstaired" : "2003-10-28", + "cast" : [ + { + "order" : 0, + "name" : "Jeremy Rowley", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "James McCauley" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Leonard R. Garner Jr." + ], + "episodeid" : 183, + "writer" : [ + "Harry Hannigan" + ], + "showtitle" : "According to Jim", + "rating" : 8 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180036.jpg/", + "votes" : "10", + "episode" : 8, + "plot" : "Gracie and Ruby have nightmares after Jim secretly takes them to see a scary movie. (ABC)", + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.59999990463257, + "default" : true + } + }, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E8.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "Scary Movie", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180036.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180036" + }, + "runtime" : 1800, + "tvshowid" : 4, + "label" : "3x08. Scary Movie", + "cast" : [ + { + "order" : 0, + "name" : "Andrea Walters", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2003-11-04", + "director" : [ + "Mark Cendrowski" + ], + "episodeid" : 184, + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "showtitle" : "According to Jim", + "rating" : 7.59999990463257, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [ + { + "name" : "Deji Olasimbo", + "role" : "", + "order" : 0 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2003-11-11", + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "3x09. The Imaginary Friend", + "rating" : 7.5, + "showtitle" : "According to Jim", + "episodeid" : 185, + "writer" : [ + "David Feeney" + ], + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180037.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "title" : "The Imaginary Friend", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180037" + }, + "runtime" : 1800, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E9.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180037.jpg/", + "votes" : "12", + "plot" : "Jim creates an imaginary friend to avoid going to a couple's baby shower with Cheryl.", + "playcount" : 0, + "episode" : 9, + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 7.5 + } + }, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + } + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E10.mp4", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180038.jpg/", + "episode" : 10, + "playcount" : 0, + "plot" : "Cheryl cajoles Jim into attending a couples cooking class, which turns into a disaster, so she lets Jim pick out the next couples activity – paintball.", + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.80000019073486, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 16, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180038.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/" + }, + "userrating" : 0, + "title" : "Paintball", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180038" + }, + "runtime" : 1800, + "lastplayed" : "", + "cast" : [ + { + "order" : 0, + "name" : "Mary Gross", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2003-11-18", + "director" : [ + "Mark Cendrowski" + ], + "label" : "3x10. Paintball", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "episodeid" : 186, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "season" : 3, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "Warren Bell" + ], + "episodeid" : 187, + "cast" : [ + { + "name" : "Lynne Maria Stewart", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Kevin Kirkpatrick", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2003-11-25", + "director" : [ + "Mark Cendrowski" + ], + "label" : "3x11. The Empty Gesture", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180039" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 16, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180039.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Empty Gesture", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E11.mp4", + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180039.jpg/", + "plot" : "Cheryl starts to feel taken for granted as she prepares Thanksgiving dinner. She suffers the ultimate insult when she gets stuck on the roof after retrieving her tablecloth that Jim had fashioned into a ghost for Halloween, and no one notices her absence until she unhooks the satellite. To apologize, Jim tells her that he, Dana and Andy will prepare the dinner. Jim never thinks that Cheryl, being the control freak that she is, would allow that to happen, so he doesn't make dinner. Unfortunately, neither does Cheryl.", + "episode" : 11, + "ratings" : { + "default" : { + "rating" : 7.80000019073486, + "default" : true, + "votes" : 10 + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59" + }, + { + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180040" + }, + "tvshowid" : 4, + "title" : "Rules of Engagement", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180040.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/" + }, + "seasonid" : 16, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "plot" : "Cheryl caters to Jim's every whim to make amends for a big fight they had the night before-except Jim doesn't remember the fight at all.", + "playcount" : 0, + "episode" : 12, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180040.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E12.mp4", + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 188, + "writer" : [ + "Christopher J. Nowak" + ], + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "3x12. Rules of Engagement", + "director" : [ + "Mark Cendrowski" + ], + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2003-12-02" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "Dana admits to Cheryl that she can't afford to buy Jim a Christmas present, so Cheryl lets Dana put her name on one of the presents she bought for him. Dana innocently picks out Cheryl's big present to Jim, but when Jim is thrilled with the gift, Dana is ready to take all the credit for it.", + "episode" : 13, + "ratings" : { + "default" : { + "rating" : 7.90000009536743, + "default" : true, + "votes" : 11 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180041.jpg/", + "votes" : "11", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E13.mp4", + "specialsortseason" : -1, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180041" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Secret Santa", + "seasonid" : 16, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180041.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 189, + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "3x13. Secret Santa", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2003-12-09", + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "label" : "3x14. House for Sale", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2004-01-06", + "cast" : [ + { + "name" : "James Kiriyama-Lem", + "role" : "", + "order" : 0 + }, + { + "name" : "Tim Bagley", + "role" : "", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2feijzmkkXb4NstAdvpMZ1m91cRxY.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fb59DN25UqjxOLHVBFLMtbiOwn0W.jpg/", + "name" : "Cynthia Stevenson", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "episodeid" : 190, + "writer" : [ + "Sylvia Green" + ], + "rating" : 8.10000038146973, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 14, + "plot" : "The Devlins place a bid on the house across the street from Jim and Cheryl, to their dismay.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 10 + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180042.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E14.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "House for Sale", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180042.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/" + }, + "seasonid" : 16, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180042" + }, + "tvshowid" : 4 + }, + { + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180043" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Dana Dates the Reverend", + "seasonid" : 16, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180043.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "playcount" : 0, + "episode" : 15, + "plot" : "Dana and Jim both covet their reverend - she for romance, he for the pastor's prowess at bowling.", + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.90000009536743, + "default" : true + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180043.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E15.mp4", + "specialsortseason" : -1, + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Harry Hannigan" + ], + "episodeid" : 191, + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "label" : "3x15. Dana Dates the Reverend", + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "name" : "Michelle Hurd", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Bea Nordella" + }, + { + "role" : "", + "name" : "Chris Elliott", + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fChris_Elliott.jpg/" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2004-01-27" + }, + { + "label" : "3x16. The Best Man", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "role" : "", + "name" : "Dan Aykroyd", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fstc0H1GhIaLF4MAHh0rNVgxKlfn.jpg/", + "name" : "Laraine Newman", + "role" : "" + }, + { + "role" : "", + "name" : "Tracy Newman", + "order" : 2 + }, + { + "order" : 3, + "name" : "Nicholas Hormann", + "role" : "" + }, + { + "order" : 4, + "role" : "", + "name" : "Robert Joseph" + }, + { + "name" : "Doug Budin", + "role" : "", + "order" : 5 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2004-02-10", + "writer" : [ + "Howard J. Morris" + ], + "episodeid" : 192, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "plot" : "Cheryl forbids Jim from throwing his cop friend Danny a bachelor party with beer and strippers. She fears that Danny will show up at his own wedding with a hangover – as Jim did at their wedding. Jim and his buddies decide to take Danny for a swim in bitter-cold Lake Michigan – forcing a hospital visit for Danny. The wedding morning, Danny stays in bed, moaning and groaning, and Cheryl frets, but the doctor assures everyone there's nothing wrong with him. Jim realizes Danny just has cold feet, so he tries to convince him to go through with his wedding to Laraine, a fellow cop.", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 9 + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180044.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E16.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "The Best Man", + "seasonid" : 16, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180044.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180044" + }, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "episodeid" : 193, + "writer" : [ + "Bob Nickman" + ], + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "label" : "3x17. Cheryl Sings", + "cast" : [ + { + "role" : "", + "name" : "Tom Cano", + "order" : 0 + }, + { + "name" : "Rachael Harris", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fRachael_Harris.jpg/", + "order" : 1 + }, + { + "order" : 2, + "name" : "Dayna Devon", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2004-02-17", + "director" : [ + "Mark Cendrowski" + ], + "season" : 3, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180045.jpg/", + "playcount" : 0, + "plot" : "Cheryl tries to impress her boastful cousin Mindy by posing as the lead singer of Jim's band – even though she has a terrible voice. Jim agrees to perform at Mindy's engagement party with Cheryl playing the part in order to teach his wife a lesson about embellishment by making a fool of herself. However, when Mindy tells Jim that her fiancé, Eric, is a record producer, he must decide between telling Cheryl the truth and making a bad impression on Eric.", + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 9 + } + }, + "episode" : 17, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E17.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180045" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Cheryl Sings", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180045.jpg/" + }, + "seasonid" : 16 + }, + { + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.5, + "default" : true, + "votes" : 10 + } + }, + "plot" : "Dana's first task at the ad agency is to cast the perfect TV family for a Disney cruise commercial. Cheryl and the kids get the job, but Dana's boss replaces Jim with a handsome actor in the role of \"dad.\"", + "episode" : 18, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180046.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E18.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "When You Wish to Be a Star (1)", + "seasonid" : 16, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180046.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180046" + }, + "lastplayed" : "", + "tvshowid" : 4, + "label" : "3x18. When You Wish to Be a Star (1)", + "director" : [ + "Mark Cendrowski" + ], + "cast" : [ + { + "order" : 0, + "name" : "Ingo Rademacher", + "role" : "" + }, + { + "order" : 1, + "name" : "Michelle Hurd", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2004-02-24", + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "episodeid" : 194, + "rating" : 7.5, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "label" : "3x19. When You Wish to Be a Star (2)", + "firstaired" : "2004-03-02", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Ingo Rademacher" + }, + { + "role" : "", + "name" : "Michelle Hurd", + "order" : 1 + }, + { + "order" : 2, + "name" : "Roberta Hanlen", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "director" : [ + "Mark Cendrowski" + ], + "writer" : [ + "Ron Hart", + "John D. Beck" + ], + "episodeid" : 195, + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "userrating" : 0, + "title" : "When You Wish to Be a Star (2)", + "seasonid" : 16, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180047.jpg/" + }, + "uniqueid" : { + "unknown" : "180047" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180047.jpg/", + "votes" : "10", + "plot" : "Jim takes umbrage at being replaced as the father in a promotional shoot for a cruise line.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.59999990463257, + "votes" : 10 + } + }, + "episode" : 19, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E19.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E20.mp4", + "specialsortseason" : -1, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180048.jpg/", + "plot" : "Gracie's recent misbehavior makes Jim think she is lying about a friend giving her a new video game.", + "playcount" : 0, + "episode" : 20, + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 7.5 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "seasonid" : 16, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180048.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "No Crime, But Punishment", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180048" + }, + "runtime" : 1800, + "lastplayed" : "", + "firstaired" : "2004-03-09", + "cast" : [ + { + "role" : "", + "name" : "Austin Rogers", + "order" : 0 + }, + { + "order" : 1, + "name" : "Stella Hudgens", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "director" : [ + "James Belushi" + ], + "label" : "3x20. No Crime, But Punishment", + "rating" : 7.5, + "showtitle" : "According to Jim", + "writer" : [ + "Howard J. Morris" + ], + "episodeid" : 196, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3 + }, + { + "writer" : [ + "David Feeney" + ], + "episodeid" : 197, + "rating" : 8, + "showtitle" : "According to Jim", + "label" : "3x21. The Baby", + "firstaired" : "2004-03-16", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fJennifer_Coolidge.jpg/", + "role" : "", + "name" : "Jennifer Coolidge" + }, + { + "role" : "", + "name" : "Rick Overton", + "order" : 1, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fRick_Overton.jpg/" + }, + { + "order" : 2, + "role" : "", + "name" : "Frances Callier" + }, + { + "order" : 3, + "role" : "", + "name" : "Glenda Morgan Brown" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Philip Charles MacKenzie" + ], + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180049.jpg/", + "votes" : "8", + "episode" : 21, + "plot" : "Jim's sister, Roxanne, shows up on his doorstep, pregnant, and lets Andy believe he's the father.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 8 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E21.mp4", + "uniqueid" : { + "unknown" : "180049" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Baby", + "seasonid" : 16, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180049.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + } + }, + { + "firstaired" : "2004-03-30", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Nana Visitor" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "3x22. Who's The Boss?", + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "episodeid" : 198, + "writer" : [ + "Bob Nickman" + ], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E22.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180050.jpg/", + "votes" : "9", + "episode" : 22, + "playcount" : 0, + "plot" : "Andy resents a wealthy client, but then decides to date her.", + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 9 + } + }, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180050.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 16, + "title" : "Who's The Boss?", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180050" + }, + "runtime" : 1800 + }, + { + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 199, + "writer" : [ + "Terry Mulroy" + ], + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "label" : "3x23. The Truck", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2004-04-06", + "cast" : [ + { + "role" : "", + "name" : "Taylor Michaels", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Andy Morrow" + }, + { + "order" : 2, + "role" : "", + "name" : "Brenda Julian" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180051" + }, + "tvshowid" : 4, + "title" : "The Truck", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180051.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Cheryl ask Jim to use his truck to transport a giant paper-mâché grizzly bear the girls made for \"spirit week\" to their school – except Jim just lost his truck in an arm wrestling match and, in a gesture of macho pride, refuses to ask for it back.", + "episode" : 23, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 7.59999990463257, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180051.jpg/", + "votes" : "9", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E23.mp4", + "specialsortseason" : -1 + }, + { + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180052" + }, + "tvshowid" : 4, + "title" : "The Toilet", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180052.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/" + }, + "seasonid" : 16, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 24, + "plot" : "Cheryl promises to take Jim's opinions seriously when she decides to remodel the bathroom, until Jim insists it include a hideous high-tech stainless steel toilet – that talks.", + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 7.90000009536743, + "default" : true + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180052.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E24.mp4", + "specialsortseason" : -1, + "season" : 3, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 200, + "writer" : [ + "Harry Hannigan" + ], + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "3x24. The Toilet", + "director" : [ + "James Belushi" + ], + "firstaired" : "2004-04-27", + "cast" : [ + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fJames_Earl_Jones.jpg/", + "order" : 0, + "name" : "James Earl Jones", + "role" : "" + }, + { + "name" : "Tim Kazurinsky", + "role" : "", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ] + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "cast" : [ + { + "role" : "", + "name" : "Carla Renata", + "order" : 0 + }, + { + "name" : "Barbara Dodd Remsen", + "role" : "", + "order" : 1 + }, + { + "name" : "Frank Potenza", + "role" : "", + "order" : 2 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2004-05-04", + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "3x25. Trashed", + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "episodeid" : 201, + "seasonid" : 16, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180053.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Trashed", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180053" + }, + "runtime" : 1800, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E25.mp4", + "specialsortseason" : -1, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180053.jpg/", + "plot" : "Pack rat Cheryl asks Jim to rent a storage unit to house seven years' worth of the kids' art projects, but Jim refuses to pay the fee, so he tosses everything out, thinking Cheryl won't notice – until she needs some of the projects for a special retirement party for Ruby's art teacher.", + "playcount" : 0, + "episode" : 25, + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "order" : 0, + "name" : "Susan Cicchino", + "role" : "" + }, + { + "name" : "Stephen Tobolowsky", + "role" : "", + "order" : 1, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fthriller%2f.actors%2fStephen_Tobolowsky.jpg/" + }, + { + "order" : 2, + "role" : "", + "name" : "Todd Tesen" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2004-05-11", + "label" : "3x26. The Marriage Bank", + "showtitle" : "According to Jim", + "rating" : 7.40000009536743, + "writer" : [ + "Christopher J. Nowak" + ], + "episodeid" : 202, + "seasonid" : 16, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180054.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Marriage Bank", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180054" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E26.mp4", + "plot" : "Thinking it might get Cheryl to let him go on a fishing trip with Andy, Jim makes a \"deposit\" in the \"marriage bank\" by agreeing to go to a couples seminar with her. Jim's plans are foiled, however, when Dr. Ted, the marriage guru, declares the whole marriage bank mentality unhealthy and Cheryl learns Jim's real motives – so that Dr. Ted must intervene.", + "episode" : 26, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.40000009536743, + "votes" : 7 + } + }, + "votes" : "7", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180054.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + } + }, + { + "label" : "3x27. Everyone Gets Dumped", + "director" : [ + "Chris Brougham" + ], + "cast" : [ + { + "role" : "", + "name" : "Ed Quinn", + "order" : 0 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2004-05-18", + "episodeid" : 203, + "writer" : [ + "Howard J. Morris" + ], + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 3, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 27, + "plot" : "Jim develops a friendship with Dana's new boyfriend, despite the fact that the guy dumped Cheryl years ago.", + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 8.10000038146973 + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180055.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E27.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "Everyone Gets Dumped", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180055.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 16, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180055" + }, + "tvshowid" : 4 + }, + { + "title" : "The Swimming Pool (1)", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180056.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180056" + }, + "runtime" : 1800, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180056.jpg/", + "playcount" : 0, + "plot" : "Cheryl protests when a heat wave sends the family sneaking into a vacationing neighbor's pool -- until she starts sneaking over on her own.", + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 7.59999990463257 + } + }, + "episode" : 28, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E28.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 3, + "label" : "3x28. The Swimming Pool (1)", + "cast" : [ + { + "order" : 0, + "name" : "Carla Renata", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2004-05-25", + "director" : [ + "Mark Cendrowski" + ], + "episodeid" : 204, + "writer" : [ + "Bob Nickman" + ], + "rating" : 7.59999990463257, + "showtitle" : "According to Jim" + }, + { + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180057.jpg/" + }, + "productioncode" : "", + "seasonid" : 16, + "title" : "The Vast Difference (2)", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180057" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 3/S3E29.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 29, + "plot" : "Jim chickens out of having a vasectomy, but Cheryl is so effusive in her praise that he's unable to admit he didn't go through with it", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.80000019073486, + "default" : true, + "votes" : 9 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180057.jpg/", + "votes" : "9", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 3, + "director" : [ + "Charles T. Kanganis" + ], + "firstaired" : "2004-05-25", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "label" : "3x29. The Vast Difference (2)", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "episodeid" : 205, + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ] + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "label" : "4x01. A Hole in One", + "director" : [ + "Charlie Kanganis" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "John Ducey" + }, + { + "order" : 1, + "name" : "Jim Toth", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2004-09-21", + "writer" : [ + "Nastaran Dibai", + "Jeffrey B. Hodes" + ], + "episodeid" : 206, + "showtitle" : "According to Jim", + "rating" : 8.39999961853027, + "userrating" : 0, + "title" : "A Hole in One", + "seasonid" : 17, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180059.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180059" + }, + "lastplayed" : "", + "tvshowid" : 4, + "plot" : "Cheryl wants Jim to give up his vices so he can get her pregnant.", + "playcount" : 0, + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 8.39999961853027, + "default" : true + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180059.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E1.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1 + }, + { + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180060" + }, + "lastplayed" : "", + "seasonid" : 17, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180060.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "The Effort", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E2.mp4", + "specialsortseason" : -1, + "plot" : "Cheryl surprises Jim with a romantic evening, but it cuts into his planned TV boxing match.", + "playcount" : 0, + "episode" : 2, + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 8 + } + }, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180060.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "season" : 4, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 8, + "showtitle" : "According to Jim", + "writer" : [ + "David Feeney" + ], + "episodeid" : 207, + "director" : [ + "Charles T. Kanganis" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Nicole Neith" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2004-09-28", + "label" : "4x02. The Effort" + }, + { + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180061.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "title" : "The Grill", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180061" + }, + "runtime" : 1800, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E3.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180061.jpg/", + "plot" : "Jim offers to give Andy an old barbecue grill, then decides Andy should pay for it.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.90000009536743, + "default" : true, + "votes" : 9 + } + }, + "episode" : 3, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4, + "firstaired" : "2004-10-12", + "cast" : [ + { + "role" : "", + "name" : "Willie Amakye", + "order" : 0 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Mark Cendrowski" + ], + "label" : "4x03. The Grill", + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "episodeid" : 208, + "writer" : [ + "Christopher J. Nowak" + ] + }, + { + "title" : "The Garage Door", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180062.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180062" + }, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Cheryl and Dana are forced to smash their way out of a locked garage, because they ignored Jim's lesson on how to open the door from the inside.", + "playcount" : 0, + "episode" : 4, + "ratings" : { + "default" : { + "rating" : 7.90000009536743, + "default" : true, + "votes" : 11 + } + }, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180062.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E4.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "label" : "4x04. The Garage Door", + "director" : [ + "Leonard R. Garner Jr." + ], + "firstaired" : "2004-10-19", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Ingrid Sanai Buron" + }, + { + "order" : 1, + "name" : "Christian Anderson", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "episodeid" : 209, + "writer" : [ + "Howard J. Morris" + ], + "showtitle" : "According to Jim", + "rating" : 7.90000009536743 + }, + { + "episodeid" : 210, + "writer" : [ + "Warren Bell" + ], + "rating" : 8.30000019073486, + "showtitle" : "According to Jim", + "label" : "4x05. Dress to Kill Me", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2004-10-26", + "cast" : [ + { + "name" : "Richard Willgrubs", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Kurt Doss", + "role" : "" + }, + { + "name" : "Benjamin Bryan", + "role" : "", + "order" : 2 + }, + { + "name" : "Kinga Philipps", + "role" : "", + "order" : 3 + }, + { + "order" : 4, + "name" : "Sarah Cole Sommers", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 8, + "rating" : 8.30000019073486, + "default" : true + } + }, + "plot" : "Kyle wants to be Cinderella for Halloween. Jim is against it because he thinks he's growing up to be a sissy. Jim buys Kyle a manly costume (a dinosaur) but Kyle changes back into the dress. Jim, Andy, and Kyle all sit on the couch, Jim and Kyle persistent. Jim goes in the kitchen, sees an older Kyle who convinces Jim to let Kyle go as Cinderella. In the end, they all go as ladies and they trick-or-treat.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180063.jpg/", + "votes" : "8", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E5.mp4", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180063" + }, + "tvshowid" : 4, + "title" : "Dress to Kill Me", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180063.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 17 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E6.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "Ruby hurts Jim's feelings when she invites Andy to a father-daughter dance instead of him.", + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 8.30000019073486, + "default" : true + } + }, + "episode" : 6, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180064.jpg/", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180064.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 17, + "title" : "Father-Daughter Dance", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180064" + }, + "director" : [ + "Charlie Kanganis" + ], + "cast" : [ + { + "role" : "", + "name" : "Kyle Chavarria", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2004-11-09", + "label" : "4x06. Father-Daughter Dance", + "rating" : 8.30000019073486, + "showtitle" : "According to Jim", + "episodeid" : 211, + "writer" : [ + "Bob Nickman" + ], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "label" : "4x07. Plot Twist", + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "name" : "Andrew Hawtrey", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Mark Brandon Anderson", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2004-11-16", + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 212, + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "userrating" : 0, + "title" : "Plot Twist", + "seasonid" : 17, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180065.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180065" + }, + "lastplayed" : "", + "tvshowid" : 4, + "playcount" : 0, + "episode" : 7, + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 11 + } + }, + "plot" : "Cheryl's mother, Maggie, wants Jim, Cheryl and the family to rest someday in a family plot she reserved years ago, but Jim insists on his own family plot--then secretly reserves a a plot for himself next to a star football player.", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180065.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E7.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180066.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "title" : "The Hunters", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180066" + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E8.mp4", + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "To prove his worth as a man, Jim -- along with Andy -- hunt a turkey for Thanksgiving, but on the hunt Jim is pursued -- and shot -- by a legendary 40- lb. psychotic bird christened \"Angry Pete.\" Thanksgiving-themed episode.", + "episode" : 8, + "ratings" : { + "default" : { + "rating" : 8.30000019073486, + "default" : true, + "votes" : 8 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180066.jpg/", + "votes" : "8", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4, + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2004-11-23", + "cast" : [ + { + "role" : "", + "name" : "Michael Rothhaar", + "order" : 0 + }, + { + "order" : 1, + "name" : "Jack Donner", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "label" : "4x08. The Hunters", + "showtitle" : "According to Jim", + "rating" : 8.30000019073486, + "episodeid" : 213, + "writer" : [ + "Mitch Hunter", + "Jana Hunter" + ] + }, + { + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "episodeid" : 214, + "rating" : 8.30000019073486, + "showtitle" : "According to Jim", + "label" : "4x09. Poking The Bear", + "director" : [ + "Charlie Kanganis" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Tom Arnold" + }, + { + "role" : "", + "name" : "Christina Cindrich", + "order" : 1 + }, + { + "name" : "Stacy Stas", + "role" : "", + "order" : 2 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2004-11-30", + "season" : 4, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "plot" : "Cheryl's gynecologist (played by Mitch Rouse) forbids her from having sex with Jim until the time is right to get pregnant, and Jim eats crow in order to win a huge account from a blowhard potential client (Tom Arnold).", + "ratings" : { + "default" : { + "rating" : 8.30000019073486, + "default" : true, + "votes" : 8 + } + }, + "playcount" : 0, + "episode" : 9, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180067.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E9.mp4", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180067" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Poking The Bear", + "seasonid" : 17, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180067.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "" + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180068" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Stalking Santa", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180068.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/" + }, + "seasonid" : 17, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180068.jpg/", + "plot" : "Jim tangles with a department store Santa after the two are involved in a parking lot fender bender. Unfortunately, Jim's kids witness the skirmish and are fearful Santa won't leave them any gifts for Christmas.", + "episode" : 10, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 10 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E10.mp4", + "season" : 4, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 215, + "writer" : [ + "Tim Kazurinsky" + ], + "rating" : 8, + "showtitle" : "According to Jim", + "label" : "4x10. Stalking Santa", + "cast" : [ + { + "name" : "Bruce Jarchow", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Tim Kazurinski", + "role" : "" + }, + { + "order" : 2, + "name" : "Tim Kazurinsky", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2004-12-14", + "director" : [ + "Philip Charles MacKenzie" + ] + }, + { + "label" : "4x11. Sympathy From the Devlins", + "cast" : [ + { + "role" : "", + "name" : "Cynthia Stevenson", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fb59DN25UqjxOLHVBFLMtbiOwn0W.jpg/", + "order" : 0 + }, + { + "name" : "Tim Bagley", + "role" : "", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2feijzmkkXb4NstAdvpMZ1m91cRxY.jpg/" + }, + { + "order" : 2, + "name" : "Sean Hogan", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2005-01-11", + "director" : [ + "James Belushi" + ], + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "episodeid" : 216, + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180069.jpg/", + "votes" : "11", + "plot" : "Jim befriends his obnoxious neighbors when he believes they bring good luck when he's watching the Chicago Bulls.", + "ratings" : { + "default" : { + "rating" : 7.59999990463257, + "default" : true, + "votes" : 11 + } + }, + "playcount" : 0, + "episode" : 11, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E11.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Sympathy From the Devlins", + "seasonid" : 17, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180069.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/" + }, + "uniqueid" : { + "unknown" : "180069" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180070" + }, + "runtime" : 1800, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180070.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "title" : "Nanny-Cam", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E12.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180070.jpg/", + "episode" : 12, + "playcount" : 0, + "plot" : "Jim buys a nanny-cam to spy on the sitter he didn't want Cheryl to hire but learns something about Cheryl instead, prompting her to buy a camera of her own.", + "ratings" : { + "default" : { + "rating" : 7.90000009536743, + "default" : true, + "votes" : 10 + } + }, + "season" : 4, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "episodeid" : 217, + "writer" : [ + "Bob Nickman" + ], + "cast" : [ + { + "role" : "", + "name" : "Barbara Dodd Remsen", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2005-01-18", + "director" : [ + "Mark Cendrowski" + ], + "label" : "4x12. Nanny-Cam" + }, + { + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180071" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Jealous Husband", + "seasonid" : 17, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180071.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "episode" : 13, + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.80000019073486, + "default" : true + } + }, + "playcount" : 0, + "plot" : "To make Cheryl feel desirable, Jim fakes a jealous rage in a restaurant and tries to teach Dana's date to do the same, but the lesson backfires when Dana fears her new beau is paranoid and possessive.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180071.jpg/", + "votes" : "11", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E13.mp4", + "season" : 4, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [ + "David Feeney" + ], + "episodeid" : 218, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "label" : "4x13. The Jealous Husband", + "director" : [ + "Dennis Capps" + ], + "firstaired" : "2005-01-25", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Christopher Stapleton" + }, + { + "order" : 1, + "role" : "", + "name" : "Chad Brokaw" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ] + }, + { + "userrating" : 0, + "title" : "A Crying Shame", + "seasonid" : 17, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180072.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180072" + }, + "lastplayed" : "", + "tvshowid" : 4, + "playcount" : 0, + "plot" : "Cheryl claims to like men who aren't afraid to cry, but when Jim bursts into tears after a movie, she is surprised to find herself turned off by his sensitivity.", + "episode" : 14, + "ratings" : { + "default" : { + "rating" : 7.40000009536743, + "default" : true, + "votes" : 10 + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180072.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E14.mp4", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "label" : "4x14. A Crying Shame", + "director" : [ + "Mark Cendrowski" + ], + "cast" : [ + { + "order" : 0, + "name" : "Willie Amakye", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2005-02-08", + "writer" : [ + "Harry Hannigan" + ], + "episodeid" : 219, + "showtitle" : "According to Jim", + "rating" : 7.40000009536743 + }, + { + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180073" + }, + "lastplayed" : "", + "seasonid" : 17, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180073.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Guess Who's Cooking Your Dinner?", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E15.mp4", + "plot" : "Cheryl cooks dinner for Dana and her boyfriend and lets him believe that Dana actually did the cooking.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.90000009536743, + "votes" : 8 + } + }, + "episode" : 15, + "playcount" : 0, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180073.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "season" : 4, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "writer" : [ + "Warren Bell" + ], + "episodeid" : 220, + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2005-02-15", + "cast" : [ + { + "role" : "", + "name" : "Carlos Lacamara", + "order" : 0 + }, + { + "name" : "Amy Brewczynski", + "role" : "", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "label" : "4x15. Guess Who's Cooking Your Dinner?" + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 4, + "cast" : [ + { + "name" : "Lori Bell", + "role" : "", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2005-02-22", + "director" : [ + "Mark Cendrowski" + ], + "label" : "4x16. The Wedding Dress", + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "episodeid" : 221, + "writer" : [ + "Sylvia Green" + ], + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180074.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "title" : "The Wedding Dress", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180074" + }, + "runtime" : 1800, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E16.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180074.jpg/", + "votes" : "9", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.10000038146973, + "votes" : 9 + } + }, + "plot" : "When Cheryl offers Dana the use of her wedding gown, Jim and Andy try to cover up the fact that the dress was destroyed in a fiery sports celebration years ago.", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4, + "label" : "4x17. The Mustache", + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2005-03-08", + "cast" : [ + { + "order" : 0, + "name" : "Jennifer Alden", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "writer" : [ + "Howard J. Morris" + ], + "episodeid" : 222, + "showtitle" : "According to Jim", + "rating" : 7.5, + "userrating" : 0, + "title" : "The Mustache", + "seasonid" : 17, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180075.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180075" + }, + "lastplayed" : "", + "tvshowid" : 4, + "playcount" : 0, + "plot" : "A hot delivery girl gives Jim some fashion advice, prompting him to grow a mustache, which Cheryl hates. Cheryl retaliates by becoming a brunette - but Jim loves it. After a chance meeting with the girl, Cheryl asks her to give Jim suggestions that will make him look ridiculous.", + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.5, + "default" : true + } + }, + "episode" : 17, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180075.jpg/", + "votes" : "11", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E17.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "plot" : "When Andy decides to learn how to dance for his sister's wedding, he turns to Jim, a closet dancer, for help.", + "playcount" : 0, + "episode" : 18, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.69999980926514, + "default" : true + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180076.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E18.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "title" : "Shall We Dance", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180076.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 17, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180076" + }, + "tvshowid" : 4, + "label" : "4x18. Shall We Dance", + "director" : [ + "Mark Cendrowski" + ], + "firstaired" : "2005-03-08", + "cast" : [ + { + "role" : "", + "name" : "Heather Lee", + "order" : 0 + }, + { + "role" : "", + "name" : "Bobby Black", + "order" : 1 + }, + { + "name" : "Renie Ferruggia", + "role" : "", + "order" : 2 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "episodeid" : 223, + "writer" : [ + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 4, + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Steven Gilborn" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2005-03-15", + "director" : [ + "James Belushi" + ], + "label" : "4x19. Take My Wife, Please", + "showtitle" : "According to Jim", + "rating" : 7.69999980926514, + "writer" : [ + "Harry Hannigan" + ], + "episodeid" : 224, + "seasonid" : 17, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180077.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Take My Wife, Please", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "180077" + }, + "runtime" : 1800, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E19.mp4", + "specialsortseason" : -1, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180077.jpg/", + "plot" : "In order to avoid going to an opera with Cheryl, Jim asks an elderly widower to be her escort.", + "episode" : 19, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.69999980926514, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + } + }, + { + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "episodeid" : 225, + "writer" : [ + "Christopher J. Nowak" + ], + "director" : [ + "Larry Joe Campbell" + ], + "firstaired" : "2005-03-22", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Henriette Mantel" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "label" : "4x20. Spelling Bee", + "season" : 4, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E20.mp4", + "dateadded" : "2016-08-26 09:16:59", + "episode" : 20, + "plot" : "Jim's pride in Gracie's new-found spelling-bee aptitude quickly turns to dismay when he has to drive her to tournaments all over the state.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.90000009536743, + "default" : true + } + }, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180078.jpg/", + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180078" + }, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180078.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 17, + "title" : "Spelling Bee", + "userrating" : 0 + }, + { + "uniqueid" : { + "unknown" : "180079" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Kentucky Fried Beltzman", + "seasonid" : 17, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180079.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/" + }, + "productioncode" : "", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180079.jpg/", + "episode" : 21, + "playcount" : 0, + "plot" : "Jim is shocked to learn that his recently deceased friend will be buried with a rare baseball card he stole from Jim.", + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 9 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E21.mp4", + "season" : 4, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Bob Nickman" + ], + "episodeid" : 226, + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "label" : "4x21. Kentucky Fried Beltzman", + "firstaired" : "2005-03-29", + "cast" : [ + { + "order" : 0, + "name" : "Charles C. Stevenson Jr.", + "role" : "" + }, + { + "order" : 1, + "name" : "Jane Morris", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "director" : [ + "James Belushi" + ] + }, + { + "season" : 4, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "episodeid" : 227, + "writer" : [ + "David Feeney", + "Jeffrey B. Hodes", + "Nastaran Dibai" + ], + "cast" : [ + { + "order" : 0, + "name" : "Mitch Rouse", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2005-04-12", + "director" : [ + "Leonard R. Garner Jr." + ], + "label" : "4x22. The Clock", + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180080" + }, + "runtime" : 1800, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180080.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "title" : "The Clock", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E22.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180080.jpg/", + "votes" : "12", + "plot" : "Jim and Cheryl adjust the clocks to get the kids to bed earlier so they can have more quality time together.", + "episode" : 22, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 7.90000009536743 + } + } + }, + { + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "Jim, certain he will win the annual hot dog eating contest, is humiliated when instead he loses to a petit woman (Suzy Nakamura), and his problems are further compounded when Andy decides to date the female champion.", + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 8, + "default" : true + } + }, + "episode" : 23, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180081.jpg/", + "votes" : "10", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E23.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "The Competition", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180081.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 17, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "180081" + }, + "tvshowid" : 4, + "label" : "4x23. The Competition", + "director" : [ + "Lynn McCracken" + ], + "cast" : [ + { + "role" : "", + "name" : "Matthew Jones", + "order" : 0 + }, + { + "name" : "Doug Cameron", + "role" : "", + "order" : 1 + }, + { + "name" : "Suzy Nakamura", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2frymamRd9wzjZquxMBKWOkylD5wN.jpg/", + "order" : 2 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2005-04-19", + "episodeid" : 228, + "writer" : [ + "Daniel Egan" + ], + "rating" : 8, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 4 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180083.jpg/", + "plot" : "When Cheryl's prim and proper bachelorette party disappoints Dana, Jim and Andy treat Dana to a rowdy night she'll never forget - but now will she make it to the wedding?", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.59999990463257, + "default" : true + } + }, + "episode" : 24, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E24.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "The Bachelorette Party", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180083.jpg/" + }, + "seasonid" : 17, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180083" + }, + "runtime" : 1800, + "tvshowid" : 4, + "label" : "4x24. The Bachelorette Party", + "firstaired" : "2005-05-03", + "cast" : [ + { + "role" : "", + "name" : "Carol Pawlak", + "order" : 0 + }, + { + "role" : "", + "name" : "Jamieson Price", + "order" : 1 + }, + { + "name" : "Thomas Crnkovich", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Tina Gasbarr", + "order" : 3 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "director" : [ + "Dennis Capps" + ], + "episodeid" : 229, + "writer" : [ + "Howard J. Morris" + ], + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4 + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E25.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180082.jpg/", + "votes" : "11", + "plot" : "Cheryl and Dana think they have cause to worry when Dana's fianc - wants to race fast cars and Jim wants to take up skydiving.", + "episode" : 25, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180082.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 17, + "title" : "Geronimo Jim", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "180082" + }, + "runtime" : 1800, + "firstaired" : "2005-05-10", + "cast" : [ + { + "role" : "", + "name" : "Robert Belushi", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "James Belushi" + ], + "label" : "4x25. Geronimo Jim", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "episodeid" : 230, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 4 + }, + { + "writer" : [ + "Sylvia Green", + "Harry Hannigan" + ], + "episodeid" : 231, + "showtitle" : "According to Jim", + "rating" : 7.59999990463257, + "label" : "4x26. The Scrapbook", + "firstaired" : "2005-05-10", + "cast" : [ + { + "name" : "Michael McCarthy", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Anthony Heald", + "role" : "" + }, + { + "name" : "Rick Hall", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Willie Amakye", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "James Belushi" + ], + "season" : 4, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180084.jpg/", + "votes" : "9", + "playcount" : 0, + "episode" : 26, + "plot" : "Jim actually remembers his and Cheryl's anniversary - but Cheryl didn't! Improvising, she gives him the photo album that covers years worth of memories. They start reminiscing.", + "ratings" : { + "default" : { + "rating" : 7.59999990463257, + "default" : true, + "votes" : 9 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E26.mp4", + "uniqueid" : { + "unknown" : "180084" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Scrapbook", + "seasonid" : 17, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f180084.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + } + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 4, + "label" : "4x27. Wedding Bell Blues", + "cast" : [ + { + "order" : 0, + "name" : "Mitch Rouse", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Kathleen Noone" + }, + { + "order" : 2, + "role" : "", + "name" : "Anthony Heald" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2005-05-17", + "director" : [ + "Charles T. Kanganis" + ], + "episodeid" : 232, + "writer" : [ + "Jana Hunter", + "Mitch Hunter" + ], + "rating" : 8.19999980926514, + "showtitle" : "According to Jim", + "title" : "Wedding Bell Blues", + "userrating" : 0, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f621261.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 17, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "621261" + }, + "runtime" : 1800, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f621261.jpg/", + "votes" : "6", + "plot" : "On Dana's wedding day, Jim accidentally knocks the family's favorite reverend unconscious with the car door, so he has to scramble to find a replacement preacher at the last minute, on the Season Finale.", + "playcount" : 0, + "episode" : 27, + "ratings" : { + "default" : { + "rating" : 8.19999980926514, + "default" : true, + "votes" : 6 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 4/S4E27.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1 + }, + { + "seasonid" : 18, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299404.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Foul Ball", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "299404" + }, + "runtime" : 1800, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E1.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299404.jpg/", + "votes" : "11", + "plot" : "The fifth season premieres with Jim sneaking off to a Cubs game with Kyle instead of taking him to his first day of kindergarten.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.80000019073486, + "default" : true + } + }, + "episode" : 1, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5, + "firstaired" : "2005-09-20", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Tammy Townsend" + }, + { + "name" : "Michael Krepack", + "role" : "", + "order" : 1 + }, + { + "name" : "Meredith Cross", + "role" : "", + "order" : 2 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "director" : [ + "Leonard R. Garner Jr." + ], + "label" : "5x01. Foul Ball", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Christopher J. Nowak" + ], + "episodeid" : 233 + }, + { + "season" : 5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 234, + "writer" : [ + "John Hart", + "John D. Beck" + ], + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "5x02. The Tale of the Tape (1)", + "director" : [ + "James Belushi", + "Dennis Capps" + ], + "cast" : [ + { + "role" : "", + "name" : "David Pasquesi", + "order" : 0 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2005-09-27", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "299405" + }, + "tvshowid" : 4, + "title" : "The Tale of the Tape (1)", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299405.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 18, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Jim worries that Cheryl's romantic expectations will increase when his new brother-in-law, Ryan, showers Dana with flowers and gifts. But then Jim learns that a special blues tape Cheryl supposedly made for him when they were dating, and that made him fall in love with her, was actually made for her by an old boyfriend", + "episode" : 2, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299405.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E2.mp4", + "specialsortseason" : -1 + }, + { + "showtitle" : "According to Jim", + "rating" : 8.69999980926514, + "writer" : [ + "John Hart", + "John D. Beck" + ], + "episodeid" : 235, + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "David Pasquesi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2005-09-27", + "label" : "5x03. The Tale of the Tape (2)", + "season" : 5, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E3.mp4", + "specialsortseason" : -1, + "episode" : 3, + "plot" : "Jim worries that Cheryl's romantic expectations will increase when his new brother-in-law, Ryan, showers Dana with flowers and gifts. But then Jim learns that a special blues tape Cheryl supposedly made for him when they were dating, and that made him fall in love with her, was actually made for her by an old boyfriend.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 3, + "default" : true, + "rating" : 8.69999980926514 + } + }, + "votes" : "3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299406.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "299406" + }, + "lastplayed" : "", + "seasonid" : 18, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299406.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Tale of the Tape (2)" + }, + { + "writer" : [ + "John Peaslee", + "Judd Pillot" + ], + "episodeid" : 236, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "label" : "5x04. Charity Begins at Hef's", + "firstaired" : "2005-10-04", + "cast" : [ + { + "order" : 0, + "name" : "Marisa Petroro", + "role" : "" + }, + { + "role" : "", + "name" : "Wylie Small", + "order" : 1 + }, + { + "order" : 2, + "name" : "Anthony Holiday", + "role" : "" + }, + { + "name" : "Hugh Hefner", + "role" : "", + "order" : 3 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "director" : [ + "Steve Zuckerman" + ], + "season" : 5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299407.jpg/", + "playcount" : 0, + "plot" : "When Cheryl wins two tickets to visit Hugh Hefner at the Playboy Mansion in a charity-raising contest that Jim secretly entered her in, she decides to take Dana instead of him.", + "episode" : 4, + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E4.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "299407" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Charity Begins at Hef's", + "seasonid" : 18, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299407.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "" + }, + { + "writer" : [ + "David Feeney" + ], + "episodeid" : 237, + "showtitle" : "According to Jim", + "rating" : 7.5, + "label" : "5x05. The Race", + "cast" : [ + { + "role" : "", + "name" : "Tammy Townsend", + "order" : 0 + }, + { + "role" : "", + "name" : "Lucille Soong", + "order" : 1 + }, + { + "order" : 2, + "name" : "Willie Amakye", + "role" : "" + }, + { + "order" : 3, + "name" : "Michael Krepack", + "role" : "" + }, + { + "order" : 4, + "name" : "Lily Jackson", + "role" : "" + }, + { + "role" : "", + "name" : "Jamison Belushi", + "order" : 5 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2005-10-11", + "director" : [ + "Steve Zuckerman" + ], + "season" : 5, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299408.jpg/", + "ratings" : { + "default" : { + "rating" : 7.5, + "default" : true, + "votes" : 11 + } + }, + "plot" : "Out-of-shape Jim enters a 10K marathon to teach Kyle, who wants to quit basketball, a lesson about not being a quitter -- but he cheats to get first to the finish line.", + "episode" : 5, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E5.mp4", + "uniqueid" : { + "unknown" : "299408" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Race", + "seasonid" : 18, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299408.jpg/" + } + }, + { + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299409.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "seasonid" : 18, + "title" : "Anec-Dont's", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "299409" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E6.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Cheryl, upset that Jim thinks her daily anecdotes are boring, steals Dana's story about meeting Oprah. Jim, now determined to out-do Cheryl, makes up a story about his construction office catching fire. But when Cheryl take the kids to see the damage, Jim and Andy, who are scrambling to make it look authentic, end up setting a real fire.", + "episode" : 6, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 8, + "default" : true, + "votes" : 10 + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299409.jpg/", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5, + "director" : [ + "Leonard R. Garner Jr." + ], + "cast" : [ + { + "order" : 0, + "name" : "Mitch Rouse", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2005-10-18", + "label" : "5x06. Anec-Dont's", + "showtitle" : "According to Jim", + "rating" : 8, + "episodeid" : 238, + "writer" : [ + "Howard J. Morris" + ] + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E7.mp4", + "specialsortseason" : -1, + "plot" : "Jim helps Andy pick up a beautiful woman in a bar, but she turns out to be crazy -- and eventually leaves Andy and stalks Jim instead.", + "episode" : 7, + "ratings" : { + "default" : { + "votes" : 8, + "rating" : 8, + "default" : true + } + }, + "playcount" : 0, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299410.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 18, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299410.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Chick Whisperer", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "299410" + }, + "lastplayed" : "", + "director" : [ + "Gerry Cohen" + ], + "firstaired" : "2005-11-01", + "cast" : [ + { + "name" : "Katie Lohmann", + "role" : "", + "order" : 0 + }, + { + "name" : "Cate Cohen", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Laurel Green" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "label" : "5x07. The Chick Whisperer", + "rating" : 8, + "showtitle" : "According to Jim", + "writer" : [ + "Bob Nickman" + ], + "episodeid" : 239, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5 + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 5, + "label" : "5x08. James & the Annoying Peach", + "director" : [ + "Gerry Cohen" + ], + "firstaired" : "2005-11-08", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2ffantasy%2f.actors%2fRosalind_Chao.jpg/", + "name" : "Rosalind Chao", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "episodeid" : 240, + "writer" : [ + "Harry Hannigan" + ], + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "title" : "James & the Annoying Peach", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299411.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 18, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "299411" + }, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 8 + } + }, + "plot" : "To teach Jim the value of communication, Cheryl doesn't speak to him for three days.", + "playcount" : 0, + "episode" : 8, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f299411.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E8.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "name" : "Mitch Rouse", + "role" : "", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2005-11-15", + "label" : "5x09. The Dream", + "rating" : 8, + "showtitle" : "According to Jim", + "writer" : [ + "David Feeney" + ], + "episodeid" : 241, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E9.mp4", + "specialsortseason" : -1, + "plot" : "Jim tries to blackmail Dana when he finds out she’s having erotic dreams about him.", + "episode" : 9, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 9 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f301492.jpg/", + "votes" : "9", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "seasonid" : 18, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f301492.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Dream", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "301492" + }, + "lastplayed" : "" + }, + { + "cast" : [ + { + "order" : 0, + "name" : "Robin Krieger", + "role" : "" + }, + { + "name" : "Mark Gagliardi", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2ffcRpgjonpH3WmPs0V63g7iP7Dbm.jpg/", + "role" : "", + "name" : "Linda Hamilton" + }, + { + "role" : "", + "name" : "Molly Beck Ferguson", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2005-11-29", + "director" : [ + "Leonard R. Garner Jr." + ], + "label" : "5x10. Lean On Me", + "showtitle" : "According to Jim", + "rating" : 7.69999980926514, + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 242, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 5, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E10.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f301493.jpg/", + "votes" : "11", + "plot" : "Cheryl encourages Jim to meet a former girlfriend wants to discuss business for lunch, and then regrets it when she becomes convinced that the old flame has romantic intentions.", + "playcount" : 0, + "episode" : 10, + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 7.69999980926514, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 18, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f301493.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "userrating" : 0, + "title" : "Lean On Me", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "301493" + }, + "runtime" : 1800, + "lastplayed" : "" + }, + { + "season" : 5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 243, + "writer" : [ + "Daniel Egan" + ], + "showtitle" : "According to Jim", + "rating" : 7.5, + "label" : "5x11. The Gift of Maggie", + "cast" : [ + { + "role" : "", + "name" : "Kathleen Noone", + "order" : 0 + }, + { + "order" : 1, + "name" : "Mitch Rouse", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2005-12-13", + "director" : [ + "Leonard R. Garner Jr." + ], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "301494" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "The Gift of Maggie", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f301494.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 18, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f301494.jpg/", + "playcount" : 0, + "episode" : 11, + "ratings" : { + "default" : { + "rating" : 7.5, + "default" : true, + "votes" : 11 + } + }, + "plot" : "When Cheryl and Dana's mother, Maggie, visits for the holidays, Jim and Cheryl compete with Ryan and Dana for her affection", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E11.mp4" + }, + { + "writer" : [ + "Mitch Hunter", + "Jana Hunter" + ], + "episodeid" : 244, + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "label" : "5x12. Sex Ed Fred", + "director" : [ + "Larry Joe Campbell" + ], + "firstaired" : "2006-01-10", + "cast" : [ + { + "role" : "", + "name" : "Carol Pawlak", + "order" : 0 + }, + { + "order" : 1, + "name" : "Doug Cameron", + "role" : "" + }, + { + "name" : "Jacob Nelson", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Paul Greenburg", + "order" : 3 + }, + { + "name" : "Elijah Runcorn", + "role" : "", + "order" : 4 + }, + { + "name" : "Laken Romine", + "role" : "", + "order" : 5 + }, + { + "role" : "", + "name" : "Karen Dyer", + "order" : 6 + }, + { + "role" : "", + "name" : "Barry Williams", + "order" : 7 + }, + { + "order" : 8, + "role" : "", + "name" : "Kari Coleman" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "season" : 5, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "episode" : 12, + "plot" : "When Jim and Cheryl watch an sex education video that is shown at Ruby's school, Jim realizes that he is watching a young him.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.90000009536743, + "default" : true, + "votes" : 10 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320678.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E12.mp4", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320678" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "Sex Ed Fred", + "seasonid" : 18, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320678.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/" + } + }, + { + "season" : 5, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 7.5, + "episodeid" : 245, + "writer" : [ + "Bob Nickman" + ], + "cast" : [ + { + "order" : 0, + "name" : "Loudon Wainwright", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Max Lesser" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2006-01-24", + "director" : [ + "James Belushi" + ], + "label" : "5x13. Renewing Vows", + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "320679" + }, + "runtime" : 1800, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320679.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/" + }, + "productioncode" : "", + "seasonid" : 18, + "title" : "Renewing Vows", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E13.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "13", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320679.jpg/", + "playcount" : 0, + "plot" : "Ruby and Gracie want to get their ears pierced but Cheryl believes that this will lead to the girls growing up too quickly and convinces Jim. Jim and Cheryl renew their wedding vows and Jim walks down the aisle with an earring.", + "episode" : 13, + "ratings" : { + "default" : { + "votes" : 13, + "default" : true, + "rating" : 7.5 + } + } + }, + { + "userrating" : 0, + "title" : "The Stick", + "seasonid" : 18, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320680.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320680" + }, + "lastplayed" : "", + "tvshowid" : 4, + "episode" : 14, + "plot" : "It's Jim's birthday and he gets upset when Cheryl gives him gifts he does not want, but is really happy when Kyle give him a stick for his birthday.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.69999980926514, + "votes" : 9 + } + }, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320680.jpg/", + "votes" : "9", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E14.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 5, + "label" : "5x14. The Stick", + "director" : [ + "Lauren Breiting" + ], + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2006-02-07", + "writer" : [ + "John Peaslee", + "Judd Pillot" + ], + "episodeid" : 246, + "rating" : 7.69999980926514, + "showtitle" : "According to Jim" + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E15.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320681.jpg/", + "votes" : "10", + "playcount" : 0, + "episode" : 15, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8.19999980926514 + } + }, + "plot" : "Cheryl and Jim get into a disagreement about Erik Estrada, and Jim tries to prove that the incident that occurred ten years ago was not wrong.", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320681.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "seasonid" : 18, + "title" : "Mr. Right", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "320681" + }, + "runtime" : 1800, + "firstaired" : "2006-02-07", + "cast" : [ + { + "name" : "Asante Jones", + "role" : "", + "order" : 0 + }, + { + "name" : "Erik Estrada", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Roxanne Beckford", + "order" : 2 + }, + { + "role" : "", + "name" : "Scott Michael Morgan", + "order" : 3 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "director" : [ + "Steve Zuckerman" + ], + "label" : "5x15. Mr. Right", + "rating" : 8.19999980926514, + "showtitle" : "According to Jim", + "episodeid" : 247, + "writer" : [ + "Christopher J. Nowak" + ], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 5 + }, + { + "label" : "5x16. Get Your Freak On", + "firstaired" : "2006-02-21", + "cast" : [ + { + "role" : "", + "name" : "Laurel Green", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Steve Zuckerman" + ], + "writer" : [ + "Mitch Hunter", + "Jana Hunter" + ], + "episodeid" : 248, + "showtitle" : "According to Jim", + "rating" : 8.19999980926514, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 5, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320682.jpg/", + "plot" : "Cheryl believes she's attending a tasteful lingerie party, but is shocked to learn the hostess is selling sex toys and Cheryl buys one, but won't tell Jim.", + "playcount" : 0, + "episode" : 16, + "ratings" : { + "default" : { + "votes" : 11, + "rating" : 8.19999980926514, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E16.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Get Your Freak On", + "seasonid" : 18, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320682.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/" + }, + "uniqueid" : { + "unknown" : "320682" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E17.mp4", + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Jim gets mad when he finds out that his neighbor Julie has been writing children books and basing them about him.", + "episode" : 17, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320683.jpg/", + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320683" + }, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320683.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 18, + "title" : "The Grumpy Guy", + "userrating" : 0, + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "episodeid" : 249, + "writer" : [ + "Sylvia Green" + ], + "director" : [ + "Kimberly Williams-Paisley" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Andrea Mikolajczak" + }, + { + "order" : 1, + "role" : "", + "name" : "Julie Newmar" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2006-02-28", + "label" : "5x17. The Grumpy Guy", + "season" : 5, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "season" : 5, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 7.59999990463257, + "episodeid" : 250, + "writer" : [ + "Wil Fox", + "Michael P Fox" + ], + "cast" : [ + { + "name" : "Jeanne Chin", + "role" : "", + "order" : 0 + }, + { + "name" : "H. Richard Greene", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Jill Holden", + "order" : 2 + }, + { + "name" : "Francoise Gralewski", + "role" : "", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2006-03-07", + "director" : [ + "Bob Koherr" + ], + "label" : "5x18. Polite Jim", + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "320684" + }, + "runtime" : 1800, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320684.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/" + }, + "productioncode" : "", + "seasonid" : 18, + "title" : "Polite Jim", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E18.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320684.jpg/", + "episode" : 18, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 7.59999990463257 + } + }, + "plot" : "Jim makes his own neighbour cry with complaining about his backyard barbeque, so he ends up taking polite lessons from Andy, in order to become a better person." + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E19.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320685.jpg/", + "votes" : "12", + "episode" : 19, + "plot" : "Jim believes that Bill (played by Joseph Bologna), the father of one of Rubys and Gracies classmates is actually his real father that abandoned Jim when he was a child.", + "ratings" : { + "default" : { + "rating" : 7.80000019073486, + "default" : true, + "votes" : 12 + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "320685" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 18, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320685.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Daddy Dearest", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Tracy Gamble" + ], + "episodeid" : 251, + "firstaired" : "2006-03-07", + "cast" : [ + { + "role" : "", + "name" : "Austin Majors", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Chris Barnes" + }, + { + "name" : "Caitlin Dulany", + "role" : "", + "order" : 2 + }, + { + "name" : "Joseph Bologna", + "role" : "", + "order" : 3 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "James Belushi" + ], + "label" : "5x19. Daddy Dearest", + "season" : 5, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E20.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320686.jpg/", + "votes" : "11", + "plot" : "Cheryl gives her best to assure herself a spot on the Church Committee, and in order to get that, she forbids Jim to do his annual \"Green Man\" routine on St. Patrick's day. However, her plans are ruined when she gets arrested.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.90000009536743, + "votes" : 11 + } + }, + "episode" : 20, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "seasonid" : 18, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320686.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Thin Green Line", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "320686" + }, + "runtime" : 1800, + "lastplayed" : "", + "firstaired" : "2006-03-14", + "cast" : [ + { + "order" : 0, + "name" : "Jesse Donnelly", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Anne Bellamy" + }, + { + "order" : 2, + "name" : "Joey Gnoffo", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Siobhan Dunn" + }, + { + "name" : "Harley Zumbrum", + "role" : "", + "order" : 4 + }, + { + "role" : "", + "name" : "Edmund L. Shaff", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Larry Joe Campbell" + ], + "label" : "5x20. The Thin Green Line", + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "writer" : [ + "Harry Hannigan" + ], + "episodeid" : 252, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5 + }, + { + "season" : 5, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 253, + "writer" : [ + "Christopher J. Nowak" + ], + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "label" : "5x21. Jim's Best Friend", + "cast" : [ + { + "order" : 0, + "name" : "Jason Stewart", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Max Lesser" + }, + { + "role" : "", + "name" : "Michael McCarthy", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Robert Belushi" + }, + { + "order" : 4, + "role" : "", + "name" : "Taras Los" + }, + { + "role" : "", + "name" : "Bruce Jarchow", + "order" : 5 + }, + { + "order" : 6, + "name" : "Sarah Poytner", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2006-03-21", + "director" : [ + "Dennis Capps" + ], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "320687" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Jim's Best Friend", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320687.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 18, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320687.jpg/", + "votes" : "10", + "playcount" : 0, + "episode" : 21, + "plot" : "When Andy stars playing chess with Ryan on a regular basis, Jim is convinced that he is losing his best friend.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 10 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E21.mp4" + }, + { + "seasonid" : 18, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320688.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Belaboring the Point", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320688" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 5/S5E22.mp4", + "plot" : "When a proud and happy Ryan announces that Dana is pregnant, Jim warns him of Dana's upcoming hormone swings, and ends up dreaming that he is pregnant.", + "playcount" : 0, + "episode" : 22, + "ratings" : { + "default" : { + "votes" : 8, + "rating" : 8.30000019073486, + "default" : true + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320688.jpg/", + "votes" : "8", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 5, + "director" : [ + "Bob Koherr" + ], + "cast" : [ + { + "role" : "", + "name" : "Marc Evan Jackson", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2f739YCwcRkcTnbyCHD0Qo526bTrG.jpg/", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Sue Nelson" + }, + { + "order" : 2, + "name" : "Katrina Lenk", + "role" : "" + }, + { + "name" : "Charlie Hartsock", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fx8P9MAClyW4pAGdB1RndzUxDtne.jpg/", + "order" : 3 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2006-05-02", + "label" : "5x22. Belaboring the Point", + "showtitle" : "According to Jim", + "rating" : 8.30000019073486, + "writer" : [ + "Howard J. Morris" + ], + "episodeid" : 254 + }, + { + "userrating" : 0, + "title" : "The Punch", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320689.jpg/" + }, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320689" + }, + "lastplayed" : "", + "tvshowid" : 4, + "playcount" : 0, + "episode" : 1, + "plot" : "Jim realizes that Cheryl has been spoiling their son Kyle for way too long, so he decides to make him a man by teaching him how to throw a perfect punch in self defense. However, things get out of control when little Kyle gets suspended for repeatedly hitting the school bully.", + "ratings" : { + "default" : { + "rating" : 7.80000019073486, + "default" : true, + "votes" : 11 + } + }, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320689.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E1.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 6, + "label" : "6x01. The Punch", + "director" : [ + "James Widdoes" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Tammy Townsend" + }, + { + "role" : "", + "name" : "Bree Pavey", + "order" : 1 + }, + { + "name" : "Marc Musso", + "role" : "", + "order" : 2 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-01-03", + "writer" : [ + "Christopher J. Nowak" + ], + "episodeid" : 255, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim" + }, + { + "season" : 6, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 8.39999961853027, + "episodeid" : 256, + "writer" : [ + "Ron Hart", + "John D. Beck" + ], + "director" : [ + "James Widdoes" + ], + "cast" : [ + { + "role" : "", + "name" : "Mitch Rouse", + "order" : 0 + }, + { + "name" : "Gillian Vigman", + "role" : "", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2f2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg/", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Matt Braaten" + }, + { + "role" : "", + "name" : "Tanjareen Martin", + "order" : 3 + }, + { + "order" : 4, + "name" : "Nikki Boyer", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2007-01-03", + "label" : "6x02. The Flannelsexual", + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320690" + }, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320690.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 19, + "title" : "The Flannelsexual", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E2.mp4", + "dateadded" : "2016-08-26 09:16:59", + "episode" : 2, + "ratings" : { + "default" : { + "rating" : 8.39999961853027, + "default" : true, + "votes" : 9 + } + }, + "plot" : "Jim ends up on a talk show after claiming that men shouldn't let women feminize them, and then goes to Dana's co-ed baby shower to prove his point.", + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320690.jpg/", + "votes" : "9" + }, + { + "plot" : "When the family pet guinea pig swallows an eraser, Jim is forced to pay for an expensive operation.", + "episode" : 3, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320691.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E3.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Guinea Pygmalion", + "seasonid" : 19, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320691.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320691" + }, + "lastplayed" : "", + "tvshowid" : 4, + "label" : "6x03. Guinea Pygmalion", + "director" : [ + "James Widdoes" + ], + "cast" : [ + { + "order" : 0, + "name" : "Barbara Stevens", + "role" : "" + }, + { + "name" : "Maribeth Monroe", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "name" : "Bruce Jarchow", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Byron McIntyre" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-01-10", + "writer" : [ + "John Peaslee", + "Judd Pillot" + ], + "episodeid" : 257, + "showtitle" : "According to Jim", + "rating" : 8, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 6 + }, + { + "seasonid" : 19, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320692.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "userrating" : 0, + "title" : "Hoosier Daddy", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320692" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E4.mp4", + "episode" : 4, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 11 + } + }, + "plot" : "Cheryl and Jim go to a motel in Indiana to celebrate their fifteenth wedding anniversary, but Dana's possible labor and a tornado interfere.", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320692.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 6, + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Louella Boquiren" + }, + { + "order" : 1, + "name" : "Tim Meadows", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-01-10", + "label" : "6x04. Hoosier Daddy", + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "writer" : [ + "John Peaslee", + "Judd Pillot" + ], + "episodeid" : 258 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E5.mp4", + "plot" : "When Cheryl's beloved Uncle Donald dies, Jim takes over housekeeping, but soon starts to suspect that Cheryl is using him.", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.39999961853027, + "votes" : 10 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320693.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320693" + }, + "lastplayed" : "", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320693.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Good Grief", + "rating" : 8.39999961853027, + "showtitle" : "According to Jim", + "writer" : [ + "John Peaslee", + "Judd Pillot" + ], + "episodeid" : 259, + "director" : [ + "James Belushi" + ], + "firstaired" : "2007-01-17", + "cast" : [ + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "label" : "6x05. Good Grief", + "season" : 6, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "writer" : [ + "Christopher J. Nowak" + ], + "episodeid" : 260, + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "label" : "6x06. All the Rage", + "director" : [ + "Dennis Capps" + ], + "firstaired" : "2007-01-17", + "cast" : [ + { + "role" : "", + "name" : "David Atkinson", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Kevin McDonald" + }, + { + "name" : "Bill Fagerbakke", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Terrance Christopher Jones" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "season" : 6, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "plot" : "Cheryl persuades Jim to attend an anger-management class, but he soon learns that getting mad isn't as much fun as getting even.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 12, + "rating" : 7.90000009536743, + "default" : true + } + }, + "episode" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320694.jpg/", + "votes" : "12", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E6.mp4", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320694" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "All the Rage", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320694.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + } + }, + { + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Daniel Egan" + ], + "episodeid" : 261, + "cast" : [ + { + "order" : 0, + "name" : "Mitch Rouse", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-01-24", + "director" : [ + "James Widdoes" + ], + "label" : "6x07. Cheryl Gone Wild", + "season" : 6, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E7.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320695.jpg/", + "votes" : "10", + "plot" : "Andy, Ryan and Jim are stunned when they find out that Dana and Cheryl recently appeared in a Chicks Gone Wild video.", + "episode" : 7, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "320695" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320695.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "Cheryl Gone Wild" + }, + { + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320696.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 19, + "title" : "Deliverance", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "320696" + }, + "runtime" : 1800, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E8.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320696.jpg/", + "votes" : "9", + "plot" : "When Dana gets into premature labor, and Ryan isn't able to come and deliver the baby because he is delivering a celebrity's baby, Jim has to be the one to deliver Dana's baby.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 8.39999961853027, + "default" : true, + "votes" : 9 + } + }, + "episode" : 8, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 6, + "firstaired" : "2007-01-31", + "cast" : [ + { + "order" : 0, + "name" : "Alex Endeshaw", + "role" : "" + }, + { + "name" : "Mitch Rouse", + "role" : "", + "order" : 1 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "James Widdoes" + ], + "label" : "6x08. Deliverance", + "showtitle" : "According to Jim", + "rating" : 8.39999961853027, + "episodeid" : 262, + "writer" : [ + "Hayes Jackson" + ] + }, + { + "dateadded" : "2016-08-26 09:16:59", + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 8, + "default" : true + } + }, + "plot" : "When Cheryl and Dana allow Jim and Ryan to take care of the kids and baby Tanner while they are out, things get out of control. Jim takes everyone to the museum and everything goes great until the Tyrannosaurus Rex display ends up destroyed.", + "playcount" : 0, + "episode" : 9, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320697.jpg/", + "votes" : "10", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E9.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "Dino-Mite", + "userrating" : 0, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320697.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 19, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320697" + }, + "tvshowid" : 4, + "label" : "6x09. Dino-Mite", + "director" : [ + "James Widdoes" + ], + "cast" : [ + { + "role" : "", + "name" : "Mitch Rouse", + "order" : 0 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-02-28", + "episodeid" : 263, + "writer" : [ + "Hayes Jackson" + ], + "rating" : 8, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 6 + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "320698" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Separate Ways", + "userrating" : 0, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320698.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 19, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320698.jpg/", + "plot" : "While Ryan is away, Dana and baby Tanner are staying at Jim and Cheryl's, until Jim starts complaining about the presence of the baby, so Cheryl wants him to stay at Andy's for a while. While Jim and Andy enjoy their male bonding, Cheryl and Dana are enjoying their time together too. At least, until Ryan returns.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 8.5, + "default" : true + } + }, + "episode" : 10, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E10.mp4", + "specialsortseason" : -1, + "season" : 6, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 264, + "writer" : [ + "Warren Bell" + ], + "rating" : 8.5, + "showtitle" : "According to Jim", + "label" : "6x10. Separate Ways", + "cast" : [ + { + "name" : "Tara Strong", + "role" : "", + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2ffantasy%2f.actors%2fTara_Strong.jpg/" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2007-03-07", + "director" : [ + "James Widdoes" + ] + }, + { + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "320699" + }, + "lastplayed" : "", + "seasonid" : 19, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320699.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "In Case of Jimergency", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E11.mp4", + "plot" : "After an argument with a claims representative about his bill, Jim's health insurance is canceled, and Jim decides to hide the truth from Cheryl, until she ends up sick and he gets her cold.", + "playcount" : 0, + "episode" : 11, + "ratings" : { + "default" : { + "rating" : 8.30000019073486, + "default" : true, + "votes" : 9 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f320699.jpg/", + "votes" : "9", + "dateadded" : "2016-08-26 09:16:59", + "season" : 6, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 8.30000019073486, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "episodeid" : 265, + "director" : [ + "Larry Joe Campbell" + ], + "cast" : [ + { + "name" : "Cleo King", + "role" : "", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCleo_King.jpg/", + "order" : 0 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2007-03-14", + "label" : "6x11. In Case of Jimergency" + }, + { + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f326682.jpg/" + }, + "productioncode" : "", + "seasonid" : 19, + "title" : "Coach Jim", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "326682" + }, + "runtime" : 1800, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E12.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f326682.jpg/", + "votes" : "11", + "plot" : "Jim decides to toughen up his daughters basketball team and soon turns them from sweet and peaceful to an angry and aggressive basketball team.", + "episode" : 12, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.30000019073486, + "votes" : 11 + } + }, + "playcount" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 6, + "cast" : [ + { + "order" : 0, + "name" : "Jamison Belushi", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Courtney Taylor Burness" + }, + { + "name" : "Meagan Fay", + "role" : "", + "order" : 2 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2007-03-28", + "director" : [ + "James Widdoes" + ], + "label" : "6x12. Coach Jim", + "showtitle" : "According to Jim", + "rating" : 8.30000019073486, + "episodeid" : 266, + "writer" : [ + "Sylvia Green" + ] + }, + { + "label" : "6x13. At-Bat", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Mitch Rouse" + }, + { + "name" : "Jamison Belushi", + "role" : "", + "order" : 1 + }, + { + "name" : "Jesse Donnelly", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "role" : "", + "name" : "Robert Belushi" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-04-04", + "director" : [ + "James Belushi" + ], + "writer" : [ + "David Feeney" + ], + "episodeid" : 267, + "rating" : 8.39999961853027, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342707.jpg/", + "votes" : "10", + "episode" : 13, + "plot" : "Jim's bad softball game advice to Kyle turns to be Jim's worst nightmare when an Ghost of Andy visits him to show him the Adult Kyle's life as a loser.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8.39999961853027 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E13.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "At-Bat", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342707.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/" + }, + "uniqueid" : { + "unknown" : "342707" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "seasonid" : 19, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342708.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "What Lies Beneath", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "342708" + }, + "runtime" : 1800, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E14.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342708.jpg/", + "votes" : "11", + "plot" : "Andy's new metal detector uncovers Jim's long-lost wedding ring, which causes headaches to Jim, because he bought a fake wedding ring as a replacement a long time ago so Cheryl wouldn't notice he lost it.", + "playcount" : 0, + "episode" : 14, + "ratings" : { + "default" : { + "rating" : 7.80000019073486, + "default" : true, + "votes" : 11 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 6, + "cast" : [ + { + "role" : "", + "name" : "Jamison Belushi", + "order" : 0 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2007-04-18", + "director" : [ + "Larry Joe Campbell" + ], + "label" : "6x14. What Lies Beneath", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 268 + }, + { + "season" : 6, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [ + "Christopher J. Nowak" + ], + "episodeid" : 269, + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "label" : "6x15. The Grill II", + "director" : [ + "Dennis Capps" + ], + "cast" : [ + { + "order" : 0, + "name" : "Taras Los", + "role" : "" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fGeorge_Takei.jpg/", + "order" : 1, + "name" : "George Takei", + "role" : "" + }, + { + "order" : 2, + "name" : "Siobhan Dunn", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2007-04-25", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "342709" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Grill II", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342709.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "Andy and Jim end up in a war after Andy tries to sell him a grill that Jim gave him a few years ago.", + "episode" : 15, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8.10000038146973 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342709.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E15.mp4" + }, + { + "episodeid" : 270, + "writer" : [ + "Ron Hart", + "John D. Beck" + ], + "showtitle" : "According to Jim", + "rating" : 7.19999980926514, + "label" : "6x16. Devlin in Disguise", + "firstaired" : "2007-05-02", + "cast" : [ + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fb59DN25UqjxOLHVBFLMtbiOwn0W.jpg/", + "order" : 0, + "name" : "Cynthia Stevenson", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2feijzmkkXb4NstAdvpMZ1m91cRxY.jpg/", + "order" : 1, + "name" : "Tim Bagley", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "director" : [ + "James Belushi" + ], + "season" : 6, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342710.jpg/", + "votes" : "9", + "plot" : "After Tim and Cindy Devlin's sudden divorce announcement, Andy starts spending time with Cindy, which turns into a relationship, and an urge for Cheryl and Jim to break them up.", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.19999980926514, + "default" : true, + "votes" : 9 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E16.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "342710" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Devlin in Disguise", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342710.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 19 + }, + { + "season" : 6, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 8.10000038146973, + "writer" : [ + "Daniel Egan" + ], + "episodeid" : 271, + "director" : [ + "Kimberly Williams-Paisley" + ], + "cast" : [ + { + "name" : "Danielle Burgio", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Patrick Fischler", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fx8P9MAClyW4pAGdB1RndzUxDtne.jpg/", + "order" : 2, + "role" : "", + "name" : "Charlie Hartsock" + }, + { + "order" : 3, + "role" : "", + "name" : "Phil LaMarr" + }, + { + "name" : "Hunter Maats", + "role" : "", + "order" : 4 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2007-05-09", + "label" : "6x17. Any Man of Mine", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "342711" + }, + "lastplayed" : "", + "seasonid" : 19, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342711.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/" + }, + "userrating" : 0, + "title" : "Any Man of Mine", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E17.mp4", + "plot" : "In order to avoid attending another musical with Cheryl, Jim finds a gay man to accompany her.", + "playcount" : 0, + "episode" : 17, + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.10000038146973, + "votes" : 11 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342711.jpg/", + "votes" : "11", + "dateadded" : "2016-08-26 09:16:59" + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 6/S6E18.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 18, + "plot" : "Cheryl throws Jim an unwanted surprise party for his 50th birthday, which Jim then sabotages, and then later reveals the real reason why he won't celebrate his birthday.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 10 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342712.jpg/", + "votes" : "10", + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "342712" + }, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f342712.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 19, + "title" : "Jim's Birthday", + "userrating" : 0, + "rating" : 8, + "showtitle" : "According to Jim", + "episodeid" : 272, + "writer" : [ + "Sylvia Green" + ], + "director" : [ + "James Widdoes" + ], + "firstaired" : "2007-05-16", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Elijah Runcorn" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fx8P9MAClyW4pAGdB1RndzUxDtne.jpg/", + "name" : "Charlie Hartsock", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "label" : "6x18. Jim's Birthday", + "season" : 6, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "season" : 7, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 273, + "writer" : [ + "Ron Hart", + "John D. Beck" + ], + "showtitle" : "According to Jim", + "rating" : 8, + "label" : "7x01. Jim Almighty", + "firstaired" : "2008-01-01", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Lee Majors" + }, + { + "role" : "", + "name" : "Maribeth Monroe", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "director" : [ + "Leonard R. Garner Jr." + ], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "347165" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Jim Almighty", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347165.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "seasonid" : 20, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347165.jpg/", + "votes" : "12", + "plot" : "Crazed about the fact that Cheryl joined a dinner party club, Jim insults the very creator of women, God, who then gives Jim the power to try to do a better job, but Jim ends up making women behave like Jim would. Also, when Andy tries to make guys more like women, he turns himself and Jim into oversensitive girly guys.", + "ratings" : { + "default" : { + "rating" : 8, + "default" : true, + "votes" : 12 + } + }, + "episode" : 1, + "playcount" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E1.mp4", + "specialsortseason" : -1 + }, + { + "episodeid" : 274, + "writer" : [ + "David Feeney" + ], + "showtitle" : "According to Jim", + "rating" : 8, + "label" : "7x02. The Hot Wife", + "cast" : [ + { + "role" : "", + "name" : "Adam Ray", + "order" : 0 + }, + { + "role" : "", + "name" : "Marc Worden", + "order" : 1 + }, + { + "order" : 2, + "name" : "Meredith Giancrande", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-01-01", + "director" : [ + "Leonard R. Garner Jr." + ], + "season" : 7, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347166.jpg/", + "votes" : "11", + "episode" : 2, + "playcount" : 0, + "plot" : "Cheryl feels down when she can't use her sexuality to get a dinner table at a restaurant, so Jim tries to cheer her up by writing letter as a 'water delivery guy', but his plan soon makes Jim doubt if Cheryl is attracted to him or the delivery guy.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 11 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E2.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "347166" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "The Hot Wife", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347166.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 20 + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "347239" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Safety Last", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347239.jpg/" + }, + "productioncode" : "", + "seasonid" : 20, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347239.jpg/", + "votes" : "10", + "plot" : "When Cheryl takes a greater interest in general safety and health, Jim feels stifled by her new rules and regulations. Just after Cheryl forces Jim to wear an I.D. badge during his morning jog, Jim is head-butted by a bull on a side road. While Cheryl learns that one can't anticipate every danger out there, Jim realizes that he's willing to do whatever it takes to make his family feel secure.", + "playcount" : 0, + "episode" : 3, + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 10 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E3.mp4", + "specialsortseason" : -1, + "season" : 7, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 275, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "label" : "7x03. Safety Last", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Bruce Jarchow" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-01-08", + "director" : [ + "Leonard R. Garner Jr." + ] + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 7, + "cast" : [ + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2008-01-15", + "director" : [ + "Steve Zuckerman" + ], + "label" : "7x04. The Perfect Fight", + "rating" : 8, + "showtitle" : "According to Jim", + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 276, + "seasonid" : 20, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347240.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "userrating" : 0, + "title" : "The Perfect Fight", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "347240" + }, + "runtime" : 1800, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E4.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f347240.jpg/", + "votes" : "10", + "plot" : "Cheryl and Jim have an evening at home without the kids and decide to stay in and just have dessert for dinner. But Jim's choice of pastries causes a spat which morphs into an all-out food fight. The next day they laugh off the night's argument; Jim is thrilled that they don't seem to have to talk things out. But then Andy, who's out for revenge on Jim for coaxing his kids to play pranks on him, counsels Cheryl to really dissect and analyze her marital arguments.", + "playcount" : 0, + "episode" : 4, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 8 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + } + }, + { + "showtitle" : "According to Jim", + "rating" : 8.19999980926514, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 277, + "director" : [ + "Steve Zuckerman" + ], + "cast" : [ + { + "role" : "", + "name" : "Mary Gross", + "order" : 0 + }, + { + "role" : "", + "name" : "Meagen Fay", + "order" : 1 + }, + { + "order" : 2, + "name" : "Maribeth Monroe", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2008-01-22", + "label" : "7x05. Cheryl Goes to Florida", + "season" : 7, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E5.mp4", + "plot" : "While Cheryl is out of town to take care of her mother, Jim has to take care of their kids, and he receives sympathy from a neighborhood mom. Soon, other moms start helping Jim, and he tells each one that she's the only help in the house.", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "rating" : 8.19999980926514, + "default" : true, + "votes" : 9 + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f349693.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "349693" + }, + "lastplayed" : "", + "seasonid" : 20, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f349693.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Cheryl Goes to Florida" + }, + { + "episodeid" : 278, + "writer" : [ + "Sylvia Green" + ], + "showtitle" : "According to Jim", + "rating" : 8, + "label" : "7x06. Ruby's First Date", + "director" : [ + "Kimberly Williams-Paisley" + ], + "firstaired" : "2008-01-29", + "cast" : [ + { + "role" : "", + "name" : "Tom Maden", + "order" : 0 + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "season" : 7, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "plot" : "While Cheryl is still out of town, Jim is having hard time dealing with Ruby's girl problems, so he assigns Dana to help her. However, when Dana tells Ruby to go out on a date with an older guy, Jim if forced to intervene, as he, Dana and Andy end up following Ruby to her date.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "default" : true, + "rating" : 8 + } + }, + "episode" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f349694.jpg/", + "votes" : "11", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E6.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "349694" + }, + "tvshowid" : 4, + "title" : "Ruby's First Date", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f349694.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 20 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 7, + "label" : "7x07. Period Peace", + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-02-05", + "director" : [ + "Leonard R. Garner Jr." + ], + "episodeid" : 279, + "writer" : [ + "Mike Murphy", + "John Schwab" + ], + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "title" : "Period Peace", + "userrating" : 0, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f349695.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "seasonid" : 20, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "349695" + }, + "runtime" : 1800, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f349695.jpg/", + "votes" : "10", + "episode" : 7, + "plot" : "When Ruby and Gracie can't seem to stop fighting, Jim is \"forced\" to read their diaries to determine the cause, only to realize that he needs to give out delicate motherly advice to them, while Cheryl is still away.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 10 + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E7.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "label" : "7x08. The Rendezvous", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fiireVGPzHjKgscjktAC9MGGcoSA.jpg/", + "name" : "Ian Gomez", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Molly Erdman" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2008-02-19", + "director" : [ + "James Belushi" + ], + "episodeid" : 280, + "writer" : [ + "Ron Hart" + ], + "showtitle" : "According to Jim", + "rating" : 7.90000009536743, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 7, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f352876.jpg/", + "playcount" : 0, + "plot" : "When Cheryl returns home for a visit the kids end up occupying her time, so Jim decides to prepare a special date with her at the airport lounge, only to end up mistakenly arrested.", + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "episode" : 8, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E8.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "title" : "The Rendezvous", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f352876.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 20, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "352876" + }, + "runtime" : 1800, + "tvshowid" : 4 + }, + { + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "352877" + }, + "tvshowid" : 4, + "title" : "Goodwill Hunting", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f352877.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "seasonid" : 20, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 9, + "ratings" : { + "default" : { + "votes" : 12, + "rating" : 8.19999980926514, + "default" : true + } + }, + "plot" : "Without consulting with Cheryl, Jim transforms the garage into a cigar lounge and donates the kids' old clothes and furniture to charity. When Cheryl informs Jim that she is pregnant with twins, he is forced to retrieve all the stuff that he gave away, and has to deal with the fact that he is going to be a father of five.", + "votes" : "12", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f352877.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E9.mp4", + "specialsortseason" : -1, + "season" : 7, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 281, + "writer" : [ + "Jim Keily" + ], + "rating" : 8.19999980926514, + "showtitle" : "According to Jim", + "label" : "7x09. Goodwill Hunting", + "director" : [ + "Steve Zuckerman" + ], + "firstaired" : "2008-02-26", + "cast" : [ + { + "order" : 0, + "name" : "Bruce Jarchow", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "name" : "James Belushi", + "role" : "Jim" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ] + }, + { + "label" : "7x10. All Dolled Up", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fBeth_Grant.jpg/", + "role" : "", + "name" : "Beth Grant" + }, + { + "role" : "", + "name" : "Courtney Taylor Burness", + "order" : 1 + }, + { + "name" : "Jamison Belushi", + "role" : "", + "order" : 2 + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2008-03-04", + "director" : [ + "Larry Joe Campbell" + ], + "writer" : [ + "Judd Pillot", + "John Peaslee" + ], + "episodeid" : 282, + "showtitle" : "According to Jim", + "rating" : 8.19999980926514, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 7, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f352878.jpg/", + "plot" : "Jim is forced organize a doll-themed party for Gracie while Cheryl is on bed rest, but when Gracie admits that the only reason she agreed to the party was because she wanted to please her mother, Jim decides to turn the party into something totally else.", + "episode" : 10, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "default" : true, + "rating" : 8.19999980926514 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E10.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "All Dolled Up", + "seasonid" : 20, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f352878.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "uniqueid" : { + "unknown" : "352878" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "label" : "7x11. Pregnancy Brain", + "firstaired" : "2008-03-11", + "cast" : [ + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "director" : [ + "James Belushi" + ], + "writer" : [ + "Hayes Jackson" + ], + "episodeid" : 283, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 7, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f353956.jpg/", + "votes" : "9", + "episode" : 11, + "playcount" : 0, + "plot" : "Jim finds a way to use Cheryl's forgetfulness (a.k.a. \"the pregnancy brain\") to his advantage by trying to convince her that it was her idea to turn the basement into a media room instead of a room for Ruby and Gracie.", + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 7.80000019073486, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E11.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Pregnancy Brain", + "seasonid" : 20, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f353956.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "uniqueid" : { + "unknown" : "353956" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4 + }, + { + "cast" : [ + { + "name" : "Jim Ward", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Bob Levitan" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-04-15", + "director" : [ + "Larry Joe Campbell" + ], + "label" : "7x12. The Gift Certificate", + "showtitle" : "According to Jim", + "rating" : 8.19999980926514, + "episodeid" : 284, + "writer" : [ + "Sung Suh" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 7, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E12.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360349.jpg/", + "playcount" : 0, + "plot" : "Realizing that Andy didn't use the gift certificate that Jim gave him for his birthday, Jim decides to use the certificate to treat himself with a nice meal, but soon Jim finds himself in an uncomfortable situation when Andy remembers the certificate and decides to invite Jim to join him for a meal.", + "ratings" : { + "default" : { + "rating" : 8.19999980926514, + "default" : true, + "votes" : 11 + } + }, + "episode" : 12, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360349.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 20, + "title" : "The Gift Certificate", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "360349" + }, + "runtime" : 1800 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 7, + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Cole Sprouse" + }, + { + "order" : 1, + "name" : "Dylan Sprouse", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2008-04-22", + "director" : [ + "Dennis Capps" + ], + "label" : "7x13. I Drink Your Milkshake", + "showtitle" : "According to Jim", + "rating" : 8.19999980926514, + "episodeid" : 285, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360350.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 20, + "title" : "I Drink Your Milkshake", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "360350" + }, + "runtime" : 1800, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E13.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360350.jpg/", + "votes" : "11", + "playcount" : 0, + "plot" : "Jim makes a rule he believes to be the perfect cure for children's fights, but when he enters a discussion with Andy, the both end up on the same \"tribunal system,\" fighting to prove who's right.", + "episode" : 13, + "ratings" : { + "default" : { + "votes" : 11, + "default" : true, + "rating" : 8.19999980926514 + } + }, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360351.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 20, + "title" : "The Chaperone", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "360351" + }, + "runtime" : 1800, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E14.mp4", + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360351.jpg/", + "votes" : "10", + "plot" : "Andy finally meets the perfect girl, but things get rough when he lets Jim babysit the woman's daughters, who then end up missing while Andy is having dinner with Emily.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "default" : true, + "rating" : 7.90000009536743 + } + }, + "episode" : 14, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 7, + "cast" : [ + { + "order" : 0, + "name" : "Veronica Louise Dunne", + "role" : "" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2faxqOCxr8AGLSkwBwxjS5bRF8e3t.jpg/", + "name" : "Mo Collins", + "role" : "" + }, + { + "order" : 2, + "role" : "", + "name" : "Savannah Stehlin" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2008-04-29", + "director" : [ + "James Belushi" + ], + "label" : "7x14. The Chaperone", + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "episodeid" : 286, + "writer" : [ + "Christopher J. Nowak", + "Warren Bell" + ] + }, + { + "uniqueid" : { + "unknown" : "360352" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Six-Week Curse", + "seasonid" : 20, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360352.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360352.jpg/", + "votes" : "11", + "episode" : 15, + "plot" : "Dana puts Andy under hypnosis to learn why all of his relationships don't last longer than six weeks. Upon learning that it's due to Andy's low self-esteem, Dana decides to boost up Andy's confidence, but she ends up making things worse when Andy starts flirting with other women while on a date with Emily.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 11, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E15.mp4", + "season" : 7, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 287, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "label" : "7x15. The Six-Week Curse", + "cast" : [ + { + "name" : "Betsy Rue", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Candace Kita", + "role" : "" + }, + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2faxqOCxr8AGLSkwBwxjS5bRF8e3t.jpg/", + "order" : 2, + "name" : "Mo Collins", + "role" : "" + }, + { + "order" : 3, + "role" : "", + "name" : "Buckley Sampson" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2008-05-13", + "director" : [ + "Philip Charles MacKenzie" + ] + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360353.jpg/", + "plot" : "Cheryl insists on playing a game that she somehow always wins, but Dana is aware of the fact that Cheryl is cheating.", + "episode" : 16, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 8.30000019073486, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E16.mp4", + "uniqueid" : { + "unknown" : "360353" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Cheater", + "seasonid" : 20, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360353.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Judd Pillot", + "John Peaslee" + ], + "episodeid" : 288, + "rating" : 8.30000019073486, + "showtitle" : "According to Jim", + "label" : "7x16. The Cheater", + "firstaired" : "2008-05-13", + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "James Belushi" + ], + "season" : 7, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "rating" : 7.90000009536743, + "showtitle" : "According to Jim", + "writer" : [ + "David Feeney" + ], + "episodeid" : 289, + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Jim Ward" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-05-27", + "director" : [ + "Philip Charles MacKenzie" + ], + "label" : "7x17. No Bedrest for the Wicked", + "season" : 7, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E17.mp4", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360354.jpg/", + "plot" : "Jim anxiously awaits for the moment when Cheryl is off bedrest so she'd take over all the chores, but Dana urges him to let Cheryl rest until she goes into labor. After meeting Cheryl's gynecologist, Jim learns that Cheryl was already allowed to be more active, but she didn't tell him.", + "episode" : 17, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.90000009536743, + "votes" : 11 + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "360354" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 20, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360354.jpg/" + }, + "userrating" : 0, + "title" : "No Bedrest for the Wicked" + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 7/S7E18.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360355.jpg/", + "episode" : 18, + "plot" : "The Devil himself visits Jim to remind him of the deal they made years ago, when Jim promised to give away his fifth child if the Devil helped him win over Cheryl.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 8.39999961853027, + "votes" : 11 + } + }, + "playcount" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f360355.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 20, + "title" : "The Devil Went Down to Oak Park", + "userrating" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "360355" + }, + "runtime" : 1800, + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "James Lipton" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2008-05-27", + "director" : [ + "Steve Zuckerman" + ], + "label" : "7x18. The Devil Went Down to Oak Park", + "showtitle" : "According to Jim", + "rating" : 8.39999961853027, + "episodeid" : 290, + "writer" : [ + "Warren Bell", + "Christopher J. Nowak" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 7 + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 8, + "firstaired" : "2008-12-02", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "Larry Joe Campbell" + ], + "label" : "8x01. The Blankie", + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "writer" : [ + "Sung Suh" + ], + "episodeid" : 291, + "seasonid" : 21, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412150.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "userrating" : 0, + "title" : "The Blankie", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "412150" + }, + "runtime" : 1800, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E1.mp4", + "votes" : "12", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412150.jpg/", + "episode" : 1, + "plot" : "Jim guilts the older kids into doing household chores after Jonathan's special blanket goes missing.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 7.69999980926514, + "default" : true, + "votes" : 12 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "rating" : 7.5, + "showtitle" : "According to Jim", + "writer" : [ + "Judd Pillot", + "John Peaslee" + ], + "episodeid" : 292, + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2faxqOCxr8AGLSkwBwxjS5bRF8e3t.jpg/", + "name" : "Mo Collins", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-12-02", + "director" : [ + "Steve Zuckerman" + ], + "label" : "8x02. The New Best Friend", + "season" : 8, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E2.mp4", + "votes" : "12", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412151.jpg/", + "plot" : "When Dana, Cheryl's sister and best friend, moves away, Jim realizes he must find Cheryl a new friend as soon as possible.", + "episode" : 2, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 12, + "default" : true, + "rating" : 7.5 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "412151" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 21, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412151.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "userrating" : 0, + "title" : "The New Best Friend" + }, + { + "seasonid" : 21, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412153.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Jami Mcfame", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "412153" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E3.mp4", + "ratings" : { + "default" : { + "votes" : 10, + "rating" : 7.80000019073486, + "default" : true + } + }, + "playcount" : 0, + "episode" : 3, + "plot" : "Jim and his band win a chance to play for a child pop sensation Jami McFame, but when the star gives them an attitude, Jim decides to set her straight.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412153.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 8, + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "name" : "Andrea Bendewald", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "name" : "Jamison Belushi", + "role" : "" + }, + { + "name" : "Tony Braunagel", + "role" : "", + "order" : 2 + }, + { + "role" : "", + "name" : "Charlie Hartsock", + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fx8P9MAClyW4pAGdB1RndzUxDtne.jpg/", + "order" : 3 + }, + { + "role" : "", + "name" : "John Rubano", + "order" : 4 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2008-12-09", + "label" : "8x03. Jami Mcfame", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Sung Suh" + ], + "episodeid" : 293 + }, + { + "director" : [ + "James Belushi" + ], + "firstaired" : "2008-12-09", + "cast" : [ + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2faxqOCxr8AGLSkwBwxjS5bRF8e3t.jpg/", + "name" : "Mo Collins", + "role" : "" + }, + { + "role" : "", + "name" : "Jere Burns", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "label" : "8x04. Andy's Proposal", + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "writer" : [ + "Warren Bell", + "Christopher J. Nowak" + ], + "episodeid" : 294, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 8, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E4.mp4", + "specialsortseason" : -1, + "plot" : "Jim urges Andy to propose to Emily or risk losing her, but when he sees Emily dining with another man, he doubts the wisdom of his advice.", + "episode" : 4, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.59999990463257, + "votes" : 11 + } + }, + "playcount" : 0, + "votes" : "11", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412152.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 21, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412152.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Andy's Proposal", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "412152" + }, + "lastplayed" : "" + }, + { + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "412154" + }, + "lastplayed" : "", + "seasonid" : 21, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412154.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "userrating" : 0, + "title" : "Two For The Money", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E5.mp4", + "plot" : "When Cheryl learns of Jim's plan to use their twins in a movie starring Steve Guttenberg to get some money for Christmas gifts, she refuses to let him do it, but Andy and Jim decide to go through with the plan anyway, only to have it backfire when the producers cut the kids hair to make them look alike.", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 7, + "rating" : 7.69999980926514, + "default" : true + } + }, + "votes" : "7", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f412154.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "season" : 8, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 7.69999980926514, + "showtitle" : "According to Jim", + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 295, + "director" : [ + "Steve Zuckerman" + ], + "cast" : [ + { + "order" : 0, + "name" : "Steve Guttenberg", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2008-12-16", + "label" : "8x05. Two For The Money" + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E6.mp4", + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 6, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.59999990463257, + "votes" : 9 + } + }, + "plot" : "Jim looks forward to a \"guys only\" weekend with Andy, but when Andy ends up dumped by Emily over a text message and when the guys stumble upon Emily's depressed ex husband, Jim decides to do his best to cheer up the guys and save what's left of their weekend.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f416277.jpg/", + "votes" : "9", + "tvshowid" : 4, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "416277" + }, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f416277.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 21, + "title" : "Cabin Boys", + "userrating" : 0, + "rating" : 7.59999990463257, + "showtitle" : "According to Jim", + "episodeid" : 296, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "role" : "", + "name" : "Jere Burns", + "order" : 0 + }, + { + "role" : "", + "name" : "Dot Jones", + "order" : 1 + }, + { + "name" : "Diane Delano", + "role" : "", + "order" : 2 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2008-12-30", + "label" : "8x06. Cabin Boys", + "season" : 8, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "title" : "The Ego Boost", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f416278.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "seasonid" : 21, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "416278" + }, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "plot" : "Jim is convinced that an old flame wants to get back with him until he realizes that she wants to hook up with Andy, leaving Jim with a bruised ego.", + "episode" : 7, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.59999990463257, + "votes" : 10 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f416278.jpg/", + "votes" : "10", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E7.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 8, + "label" : "8x07. The Ego Boost", + "director" : [ + "James Belushi" + ], + "firstaired" : "2009-04-14", + "cast" : [ + { + "role" : "", + "name" : "Constance Marie", + "order" : 0 + }, + { + "name" : "Jennifer Candy", + "role" : "", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "episodeid" : 297, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "showtitle" : "According to Jim", + "rating" : 7.59999990463257 + }, + { + "dateadded" : "2016-08-26 09:16:59", + "plot" : "Jim becomes intrigued by Cheryl's raving about a yoga teacher so he decides to try out the class, only to end up impressed by the teacher. Both Jim and Cheryl end up taking separate private classes to relax from their busy family life.", + "playcount" : 0, + "episode" : 8, + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 10 + } + }, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537871.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E8.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "The Yoga Bear", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537871.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 21, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "537871" + }, + "tvshowid" : 4, + "label" : "8x08. The Yoga Bear", + "director" : [ + "Penny Marshall" + ], + "cast" : [ + { + "order" : 0, + "name" : "Patrick Fabian", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2009-04-14", + "episodeid" : 298, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "rating" : 8.10000038146973, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 8 + }, + { + "rating" : 8.10000038146973, + "showtitle" : "According to Jim", + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 299, + "director" : [ + "James Belushi" + ], + "cast" : [ + { + "name" : "Jackie Debatin", + "role" : "", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0, + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "name" : "Kimberly Williams-Paisley", + "role" : "Dana", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "firstaired" : "2009-04-21", + "label" : "8x09. Kyle's Crush", + "season" : 8, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E9.mp4", + "specialsortseason" : -1, + "episode" : 9, + "plot" : "Jim prepares Kyle for his first \"date\" with Ruby's slightly older piano teacher, Mandy, whom Andy has fallen for and is secretly dating behind Kyle's back.", + "ratings" : { + "default" : { + "rating" : 8.10000038146973, + "default" : true, + "votes" : 10 + } + }, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537881.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "537881" + }, + "lastplayed" : "", + "seasonid" : 21, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537881.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "userrating" : 0, + "title" : "Kyle's Crush" + }, + { + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "playcount" : 0, + "plot" : "Andy, desperate to impress Mandy with the perfect birthday gift, turns to Jim for advice. Jim counsels against givivng fancy jewelry, urging Andy instead to give a sentimental gift to win her over. But Andy's recollection of what has meaning to Mandy is way off base, and instead of being pleased with the gift, she thinks he's cheating on her.", + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 8.5 + } + }, + "episode" : 10, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537891.jpg/", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E10.mp4", + "specialsortseason" : -1, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "537891" + }, + "lastplayed" : "", + "tvshowid" : 4, + "userrating" : 0, + "title" : "The Meaningful Gift", + "seasonid" : 21, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537891.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 300, + "rating" : 8.5, + "showtitle" : "According to Jim", + "label" : "8x10. The Meaningful Gift", + "director" : [ + "Philip Charles MacKenzie" + ], + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Jackie Debatin" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "name" : "Taylor Atelian", + "role" : "Ruby" + }, + { + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "role" : "Gracie", + "name" : "Billi Bruno", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "firstaired" : "2009-04-21", + "season" : 8, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "showtitle" : "According to Jim", + "rating" : 8.30000019073486, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 301, + "firstaired" : "2009-04-28", + "cast" : [ + { + "role" : "", + "name" : "Robert Belushi", + "order" : 0 + }, + { + "role" : "", + "name" : "Harry Hannigan", + "order" : 1 + }, + { + "name" : "Rachel Sondag", + "role" : "", + "order" : 2 + }, + { + "order" : 3, + "name" : "Madison Dirks", + "role" : "" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "role" : "Kyle", + "name" : "Conner Rayburn", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/" + } + ], + "director" : [ + "Steve Zuckerman" + ], + "label" : "8x11. The Daddy Way", + "season" : 8, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E11.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537901.jpg/", + "votes" : "9", + "episode" : 11, + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 8.30000019073486 + } + }, + "plot" : "Cheryl and her friends, eager to get an afternoon away from the kids, arrange a \"Daddy and Me\" group for Jim and other dads with young kids at their home. Jim makes the best of a potentially boring situation by turning babysitting into a sporting event--staging baby races where the dads bet on their kids and drink beer.", + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "537901" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 21, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537901.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Daddy Way" + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "537911" + }, + "runtime" : 1800, + "tvshowid" : 4, + "title" : "Physical Therapy", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537911.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "seasonid" : 21, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537911.jpg/", + "plot" : "Andy ends up injured after playing snow football with Jim, so Jim helps Andy make it seem like he had a freak accident because Andy was previously warned by his girlfriend not to play the game.", + "playcount" : 0, + "episode" : 12, + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 7.80000019073486, + "default" : true + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E12.mp4", + "specialsortseason" : -1, + "season" : 8, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 302, + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "label" : "8x12. Physical Therapy", + "cast" : [ + { + "order" : 0, + "name" : "Garry Marshall", + "role" : "" + }, + { + "order" : 1, + "role" : "", + "name" : "Jackie Debatin" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2 + }, + { + "name" : "Larry Joe Campbell", + "role" : "Andy", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2009-04-28", + "director" : [ + "Penny Marshall" + ] + }, + { + "ratings" : { + "default" : { + "votes" : 9, + "rating" : 7.80000019073486, + "default" : true + } + }, + "plot" : "Jim attempts to look cool in the eyes of Ruby and her friends, until he realizes that he may be undermining Cheryl's authority due to his behavior.", + "episode" : 13, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537921.jpg/", + "votes" : "9", + "dateadded" : "2016-08-26 09:16:59", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E13.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "The Cooler One", + "seasonid" : 21, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f537921.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "537921" + }, + "lastplayed" : "", + "tvshowid" : 4, + "label" : "8x13. The Cooler One", + "director" : [ + "Larry Joe Campbell" + ], + "cast" : [ + { + "name" : "Lacey Ellison", + "role" : "", + "order" : 0 + }, + { + "order" : 1, + "role" : "", + "name" : "Alec Hogan" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3, + "name" : "Larry Joe Campbell", + "role" : "Andy" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2009-05-12", + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 303, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 8 + }, + { + "userrating" : 0, + "title" : "Happy Jim", + "seasonid" : 21, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642911.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "uniqueid" : { + "unknown" : "642911" + }, + "runtime" : 1800, + "lastplayed" : "", + "tvshowid" : 4, + "votes" : "8", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642911.jpg/", + "plot" : "Jim's bad back has him on prescription pain pills which has him in an altered state and opens up an opportunity for the family to share information which usually would upset him.", + "episode" : 14, + "ratings" : { + "default" : { + "votes" : 8, + "default" : true, + "rating" : 7.80000019073486 + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E14.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 8, + "label" : "8x14. Happy Jim", + "cast" : [ + { + "name" : "Wendy Benson-Landes", + "role" : "", + "order" : 0 + }, + { + "name" : "Joe Liss", + "role" : "", + "order" : 1 + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "firstaired" : "2009-05-12", + "director" : [ + "Lauren Breiting" + ], + "writer" : [ + "Tracy Newman", + "Jonathan Stark" + ], + "episodeid" : 304, + "rating" : 7.80000019073486, + "showtitle" : "According to Jim" + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 8, + "label" : "8x15. King of the Nerds", + "director" : [ + "Philip Charles MacKenzie" + ], + "firstaired" : "2009-05-26", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "William 'Refrigerator' Perry" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "name" : "James Belushi", + "role" : "Jim" + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "role" : "Andy", + "name" : "Larry Joe Campbell" + }, + { + "name" : "Taylor Atelian", + "role" : "Ruby", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "name" : "Conner Rayburn", + "role" : "Kyle" + }, + { + "name" : "Billi Bruno", + "role" : "Gracie", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6 + } + ], + "episodeid" : 305, + "writer" : [ + "Michael J.S. Murphy", + "John Schwab" + ], + "showtitle" : "According to Jim", + "rating" : 8.19999980926514, + "title" : "King of the Nerds", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642921.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 21, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "642921" + }, + "tvshowid" : 4, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 15, + "plot" : "Jim uses his passion for sports to connect with son Kyle. But sports-challenged Kyle identifies more with fellow sci-fi nerd Andy, forcing a reluctant Jim to dress up as a Cyclops at a sci-fi convention in order to win his son back.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 9, + "default" : true, + "rating" : 8.19999980926514 + } + }, + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642921.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E15.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "specialsortepisode" : -1 + }, + { + "ratings" : { + "default" : { + "rating" : 7.5, + "default" : true, + "votes" : 10 + } + }, + "plot" : "Cheryl forces Jim to donate time to charity. His reluctance turns to elation when he's rewarded with a thousand-dollar check for his efforts. Cheryl insists he return the check, but Jim is itching to buy himself somthing frivolous with the money. And to really test Cheryl's integrity, he spends the money on a pricey designer handbag for her.", + "episode" : 16, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642931.jpg/", + "votes" : "10", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E16.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "I Hate the High Road", + "seasonid" : 21, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642931.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "642931" + }, + "lastplayed" : "", + "tvshowid" : 4, + "label" : "8x16. I Hate the High Road", + "director" : [ + "Dennis Capps" + ], + "cast" : [ + { + "thumbnail" : "image://http%3a%2f%2fimage.tmdb.org%2ft%2fp%2foriginal%2fdbbOF0P2h8qJ0fktNzMj4rmztP3.jpg/", + "order" : 0, + "name" : "Patricia Belcher", + "role" : "" + }, + { + "name" : "Fitz Houston", + "role" : "", + "order" : 1 + }, + { + "order" : 2, + "role" : "", + "name" : "Kelsey Crane" + }, + { + "name" : "James Belushi", + "role" : "Jim", + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1, + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl" + }, + { + "role" : "Dana", + "name" : "Kimberly Williams-Paisley", + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/", + "order" : 3 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4, + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2009-05-26", + "writer" : [ + "Sylvia Green" + ], + "episodeid" : 306, + "showtitle" : "According to Jim", + "rating" : 7.5, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 8 + }, + { + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "642941" + }, + "runtime" : 1800, + "lastplayed" : "", + "seasonid" : 21, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642941.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Diamonds Are a Ghoul's Best Friend", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E17.mp4", + "specialsortseason" : -1, + "votes" : "10", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642941.jpg/", + "playcount" : 0, + "plot" : "It's Cheryl's birthday and Jim decides to buy her a diamond necklace. But in an attempt to save money, he buys the necklace from Andy's unreliable source and soon learns that it was taken off of a dead woman whose ghost now begins to haunt him.", + "episode" : 17, + "ratings" : { + "default" : { + "default" : true, + "rating" : 7.80000019073486, + "votes" : 10 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "season" : 8, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "According to Jim", + "rating" : 7.80000019073486, + "writer" : [ + "Warren Bell" + ], + "episodeid" : 307, + "cast" : [ + { + "role" : "", + "name" : "William Schallert", + "order" : 0 + }, + { + "name" : "Fatso-Fasano", + "role" : "", + "order" : 1 + }, + { + "role" : "", + "name" : "Ellen Albertini Dow", + "order" : 2 + }, + { + "order" : 3, + "name" : "Jackie Debatin", + "role" : "" + }, + { + "order" : 4, + "name" : "Kristen Claire Feldman", + "role" : "" + }, + { + "order" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "role" : "Jim", + "name" : "James Belushi" + }, + { + "name" : "Courtney Thorne-Smith", + "role" : "Cheryl", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "role" : "Dana", + "name" : "Kimberly Williams-Paisley" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5, + "role" : "Kyle", + "name" : "Conner Rayburn" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "firstaired" : "2009-06-02", + "director" : [ + "Christopher J. Nowak" + ], + "label" : "8x17. Diamonds Are a Ghoul's Best Friend" + }, + { + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/Season 8/S8E18.mp4", + "dateadded" : "2016-08-26 09:16:59", + "votes" : "9", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642951.jpg/", + "plot" : "When Jim chokes on a shrimp puff, he dies and arrives at Heaven's gate. With Jim on trial to prove his selfless acts on earth, best friend Andy is summoned to heaven to defend him. As Jim attempts to prove his good works to God, his sister-in-law, Dana, represents the Devil, arguing that Jim's selfishness should mean a certain trip to hell.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 8, + "votes" : 9 + } + }, + "episode" : 18, + "playcount" : 0, + "tvshowid" : 4, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "642951" + }, + "runtime" : 1800, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f75926%2f642951.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "seasonid" : 21, + "title" : "Heaven Opposed to Hell", + "userrating" : 0, + "showtitle" : "According to Jim", + "rating" : 8, + "episodeid" : 308, + "writer" : [ + "John D. Beck", + "Ron Hart" + ], + "firstaired" : "2009-06-02", + "cast" : [ + { + "order" : 0, + "role" : "", + "name" : "Dan Aykroyd" + }, + { + "order" : 1, + "name" : "Lee Majors", + "role" : "" + }, + { + "order" : 2, + "role" : "", + "name" : "Erik Estrada" + }, + { + "role" : "", + "name" : "Mitch Rouse", + "order" : 3 + }, + { + "order" : 4, + "name" : "Bruce Jarchow", + "role" : "" + }, + { + "order" : 5, + "name" : "Jackie Debatin", + "role" : "" + }, + { + "role" : "Jim", + "name" : "James Belushi", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "order" : 1 + }, + { + "order" : 2, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "role" : "Ruby", + "name" : "Taylor Atelian" + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/" + }, + { + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "name" : "Billi Bruno", + "role" : "Gracie" + } + ], + "director" : [ + "James Belushi" + ], + "label" : "8x18. Heaven Opposed to Hell", + "season" : 8, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "" + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [], + "cast" : [], + "firstaired" : "2011-09-26", + "label" : "1x01. The Porridge Party", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 2992, + "seasonid" : 560, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180196.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "The Porridge Party", + "tvshowid" : 138, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4180196" + }, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E1.mp4", + "plot" : "Abney and Teal make lots of porridge to warm them up on a cold and gloomy day. They make so much that it fills all the bowls in Abney's house and starts to get everywhere. Teal decides they should have a porridge party to use it all up.", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "episode" : 1, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180196.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + } + }, + { + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "episodeid" : 2993, + "writer" : [], + "cast" : [], + "firstaired" : "2011-09-27", + "director" : [], + "label" : "1x02. The Star Stick", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E2.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180197.jpg/", + "votes" : "0", + "episode" : 2, + "playcount" : 0, + "plot" : "Teal can't sleep and is watching the sky when she sees a beautiful shooting star. She wakes up Abney and the Poc-Pocs to help her catch one for herself.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4180197" + }, + "runtime" : 660, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180197.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/" + }, + "seasonid" : 560, + "title" : "The Star Stick", + "userrating" : 0 + }, + { + "episodeid" : 2994, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "1x03. The Poc Pocs' Holiday", + "cast" : [], + "firstaired" : "2011-09-28", + "director" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180198.jpg/", + "plot" : "Abney and Teal are worried because the Poc-Pocs are not poc-ing; they are not even interested in porridge or games. Teal decides that what the Poc-Pocs need is a holiday to cheer them up.", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 3, + "playcount" : 0, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E3.mp4", + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4180198" + }, + "runtime" : 660, + "tvshowid" : 138, + "title" : "The Poc Pocs' Holiday", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180198.jpg/" + }, + "productioncode" : "", + "seasonid" : 560 + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2011-09-29", + "label" : "1x04. The Storm", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 2995, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E4.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "playcount" : 0, + "plot" : "A wild storm is blowing over the Island and Abney and Teal shelter inside. The Poc-Pocs soon join them but two are missing! Abney and Teal come up with a plan to save the two Poc-Pocs from a storm monster.", + "episode" : 4, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180199.jpg/", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180199.jpg/" + }, + "seasonid" : 560, + "title" : "The Storm", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4180199" + } + }, + { + "title" : "Stuck", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180200.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/" + }, + "seasonid" : 560, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4180200" + }, + "runtime" : 660, + "tvshowid" : 138, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4180200.jpg/", + "votes" : "0", + "plot" : "Everyone is very busy on the Island. Abney is decorating the trees and Teal has found an old tyre to do tricks with. The tyre gets stuck around Bop's tummy and Teal, Abney, Neep and the Poc-Pocs have to think what to do.", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E5.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x05. Stuck", + "firstaired" : "2011-09-30", + "cast" : [], + "director" : [], + "episodeid" : 2996, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0 + }, + { + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x06. Firefly Lullaby", + "director" : [], + "cast" : [], + "firstaired" : "2011-10-03", + "episodeid" : 2997, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "title" : "Firefly Lullaby", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186362.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + "productioncode" : "", + "seasonid" : 560, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4186362" + }, + "tvshowid" : 138, + "dateadded" : "2016-08-26 09:16:57", + "plot" : "The Poc-Pocs keep waking Abney and Teal up and won't go to sleep. They all go and see if Bop can think of a way to calm the Poc-Pocs down. Meanwhile, Neep encounters some fireflies.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186362.jpg/", + "votes" : "0", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E6.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1 + }, + { + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4186363" + }, + "runtime" : 660, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186363.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "productioncode" : "", + "seasonid" : 560, + "title" : "The Rainbow Whistle", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E7.mp4", + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186363.jpg/", + "votes" : "0", + "plot" : "Abney finds a whistle. When he plays it a beautiful rainbow appears in the sky. Teal thinks there will be treasure at the end of the rainbow so they set out across the lake to find it.", + "episode" : 7, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 2998, + "writer" : [], + "cast" : [], + "firstaired" : "2011-10-04", + "director" : [], + "label" : "1x07. The Rainbow Whistle" + }, + { + "dateadded" : "2016-08-26 09:16:57", + "episode" : 8, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "Teal and Neep help Abney find something to fill a gap on his shelves. Nothing seems to fit until they find an old radio in the lake which causes all sorts of excitement.", + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186364.jpg/", + "votes" : "0", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E8.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "The Radio", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186364.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + "productioncode" : "", + "seasonid" : 560, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4186364" + }, + "tvshowid" : 138, + "label" : "1x08. The Radio", + "director" : [], + "cast" : [], + "firstaired" : "2011-10-05", + "episodeid" : 2999, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1 + }, + { + "label" : "1x09. Sky High", + "cast" : [], + "firstaired" : "2011-10-06", + "director" : [], + "episodeid" : 3000, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186365.jpg/", + "votes" : "0", + "episode" : 9, + "plot" : "It is extremely windy. Neep has a wonderful time flying through the air on a whirligig. Abney and Teal go to see Bop who blows a giant bubble for each of them so they can join in. They go higher and higher and higher, which Abney is not too sure about.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E9.mp4", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "title" : "Sky High", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186365.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 560, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4186365" + }, + "runtime" : 660, + "tvshowid" : 138 + }, + { + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E10.mp4", + "dateadded" : "2016-08-26 09:16:57", + "plot" : "It is a lazy day on the Island. Abney, Teal and Neep put up a hammock and have a great time trying to get into it. The Poc-Pocs join in the fun but are thrown up into the air and disappear. Where have they gone?", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 10, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186366.jpg/", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186366.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "seasonid" : 560, + "title" : "The Poc-Poc Hunt", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4186366" + }, + "director" : [], + "firstaired" : "2011-10-09", + "cast" : [], + "label" : "1x10. The Poc-Poc Hunt", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 3001, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "label" : "1x11. The Train", + "cast" : [], + "firstaired" : "2011-10-10", + "director" : [], + "episodeid" : 3002, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186367.jpg/", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 11, + "plot" : "It is a lazy day on the Island. Abney, Everybody is bored. Abney builds a train so they can go on a tour. Then Teal has an idea - why don't they tour the whole island? It is a fantastic tour until something gets in the way.", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E11.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "The Train", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186367.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/" + }, + "seasonid" : 560, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4186367" + }, + "runtime" : 660, + "tvshowid" : 138 + }, + { + "userrating" : 0, + "title" : "The Mystery", + "seasonid" : 560, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186368.jpg/" + }, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4186368" + }, + "lastplayed" : "", + "tvshowid" : 138, + "playcount" : 0, + "plot" : "Some of Abney and Teal's favourite objects are missing. Has there been a robbery? It's a mystery!", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 12, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186368.jpg/", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E12.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x12. The Mystery", + "director" : [], + "firstaired" : "2011-10-11", + "cast" : [], + "writer" : [], + "episodeid" : 3003, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0 + }, + { + "label" : "1x13. Neep's Birthday", + "cast" : [], + "firstaired" : "2011-10-12", + "director" : [], + "episodeid" : 3004, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186369.jpg/", + "votes" : "0", + "plot" : "It is a peaceful day but Neep is digging holes all over the island and won't stop. Abney and Teal try to work out why he is so excited. It must be his birthday!", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 13, + "playcount" : 0, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E13.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "title" : "Neep's Birthday", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186369.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/" + }, + "seasonid" : 560, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4186369" + }, + "runtime" : 660, + "tvshowid" : 138 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E14.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "plot" : "It is a very rainy day and Abney finds a hole in his roof. Then he starts to notice holes everywhere. He decides to dig one of his own, but gets stuck in it! Teal, Neep and the Poc-Pocs try to get him out.", + "episode" : 14, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186370.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "seasonid" : 560, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186370.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "userrating" : 0, + "title" : "Abney Finds a Hole", + "tvshowid" : 138, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4186370" + }, + "lastplayed" : "", + "director" : [], + "firstaired" : "2011-10-13", + "cast" : [], + "label" : "1x14. Abney Finds a Hole", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 3005, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 3006, + "cast" : [], + "firstaired" : "2011-10-14", + "director" : [], + "label" : "1x15. Faraway Island", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E15.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186371.jpg/", + "votes" : "0", + "plot" : "Teal goes to see what its like living on a faraway island. Abney worries that she might be lonely and sends her the Poc-Pocs for company, but when they arrive there is one missing - lost in the post!", + "playcount" : 0, + "episode" : 15, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:57", + "tvshowid" : 138, + "uniqueid" : { + "unknown" : "4186371" + }, + "runtime" : 660, + "lastplayed" : "", + "seasonid" : 560, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4186371.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "userrating" : 0, + "title" : "Faraway Island" + }, + { + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 16, + "plot" : "Bop is experimenting with a new kind of bubble. Abney, Teal, Neep and the Poc-Pocs have a great time playing with Bop's musical creations. That is, until things get a bit too bubbly.", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201287.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E16.mp4", + "specialsortseason" : -1, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4201287" + }, + "lastplayed" : "", + "tvshowid" : 138, + "userrating" : 0, + "title" : "Bop's Best Bubble", + "seasonid" : 560, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201287.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "productioncode" : "", + "writer" : [], + "episodeid" : 3007, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "1x16. Bop's Best Bubble", + "director" : [], + "firstaired" : "2011-11-07", + "cast" : [], + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4201288" + }, + "runtime" : 660, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201288.jpg/" + }, + "productioncode" : "", + "seasonid" : 560, + "title" : "The Slide", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E17.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201288.jpg/", + "votes" : "0", + "playcount" : 0, + "plot" : "It is a damp and soggy day on the Island. Abney and Teal have great fun sliding about in the mud and when it is time to get clean they have a super soapy bath. Somehow their foamy bath water gets into the lake and Bop gets a bit of a surprise.", + "episode" : 17, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "episodeid" : 3008, + "writer" : [], + "firstaired" : "2011-11-08", + "cast" : [], + "director" : [], + "label" : "1x17. The Slide" + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [], + "episodeid" : 3009, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "1x18. The Enormous Neep", + "firstaired" : "2011-11-09", + "cast" : [], + "director" : [], + "uniqueid" : { + "unknown" : "4201289" + }, + "runtime" : 660, + "lastplayed" : "", + "tvshowid" : 138, + "userrating" : 0, + "title" : "The Enormous Neep", + "seasonid" : 560, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201289.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201289.jpg/", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "Abney makes a pot of brilliant porridge, but while Abney and Teal are busy setting the table the porridge disappears. Where could it have gone?\r\n\r\n.", + "playcount" : 0, + "episode" : 18, + "dateadded" : "2016-08-26 09:16:57", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E18.mp4" + }, + { + "firstaired" : "2011-11-10", + "cast" : [], + "director" : [], + "label" : "1x19. The Buzzing Thing", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 3010, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E19.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201290.jpg/", + "plot" : "Neep finds a buzzing thing. It buzzes all over the Island causing all kinds of mischief. Abney, Teal and the Poc-Pocs go and see what the excitement is all about.", + "playcount" : 0, + "episode" : 19, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201290.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + "seasonid" : 560, + "title" : "The Buzzing Thing", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4201290" + }, + "runtime" : 660 + }, + { + "userrating" : 0, + "title" : "The Moon", + "seasonid" : 560, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201291.jpg/" + }, + "productioncode" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4201291" + }, + "lastplayed" : "", + "tvshowid" : 138, + "episode" : 20, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "Teal wants to build something huge, as big as the moon. Abney isn't sure how big the moon is exactly. So they decide to build a rocket and go there to find out.", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4201291.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E20.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x20. The Moon", + "director" : [], + "cast" : [], + "firstaired" : "2011-11-11", + "writer" : [], + "episodeid" : 3011, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0 + }, + { + "label" : "1x21. The Snow Neep", + "director" : [], + "cast" : [], + "firstaired" : "2011-12-12", + "episodeid" : 3012, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "dateadded" : "2016-08-26 09:16:57", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "plot" : "A thick blanket of snow covers the Island. Abney and Teal are very excited and go out to play, but they can't find Neep anywhere to join in the snowy fun.", + "episode" : 21, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4228649.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E21.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "title" : "The Snow Neep", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4228649.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "seasonid" : 560, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4228649" + }, + "tvshowid" : 138 + }, + { + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4228650.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + "seasonid" : 560, + "title" : "The Perfect Tree", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4228650" + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E22.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "plot" : "Abney and Teal search all over the Island to find the perfect tree to put their presents under. They aren't having much luck, but Bop has a surprise in store.", + "episode" : 22, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4228650.jpg/", + "votes" : "0", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "director" : [], + "cast" : [], + "firstaired" : "2011-12-16", + "label" : "1x22. The Perfect Tree", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 3013, + "writer" : [] + }, + { + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "plot" : "It is a beautiful day and Abney is inspired to make some art. He can't find anything to draw, but then Bop strikes the perfect pose. If only Abney could concentrate long enough to draw his picture.", + "episode" : 23, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261741.jpg/", + "votes" : "0", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E23.mp4", + "specialsortseason" : -1, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4261741" + }, + "tvshowid" : 138, + "title" : "The Artwork", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261741.jpg/" + }, + "seasonid" : 560, + "episodeid" : 3014, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "1x23. The Artwork", + "director" : [ + "Joel Stewart" + ], + "cast" : [], + "firstaired" : "2012-02-06", + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "label" : "1x24. Abney's Magic Show", + "director" : [ + "Joel Stewart" + ], + "cast" : [], + "firstaired" : "2012-02-07", + "writer" : [], + "episodeid" : 3015, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "episode" : 24, + "plot" : "Abney puts on a magic show for Teal and the Poc Pocs. They are not very impressed! Then all sorts of strange and mysterious things start to happen with Abney's new hat.", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261742.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E24.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Abney's Magic Show", + "seasonid" : 560, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261742.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4261742" + }, + "lastplayed" : "", + "tvshowid" : 138 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E25.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261743.jpg/", + "votes" : "0", + "plot" : "Abney is knitting. He is so engrossed that he doesn't notice an enormous woolly tangle wreaking havoc all over the Island. Teal thinks Abney must be trapped by a woolly monster and sets out to save him.", + "episode" : 25, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261743.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/" + }, + "seasonid" : 560, + "title" : "The Woolly Tangle", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4261743" + }, + "runtime" : 660, + "cast" : [], + "firstaired" : "2012-02-08", + "director" : [ + "Joel Stewart" + ], + "label" : "1x25. The Woolly Tangle", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "episodeid" : 3016, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261744.jpg/", + "plot" : "Abney's front door is blocked by a huge leaf pile, which Teal has great fun jumping in. But when Abney decides to join in the leaves are gone. Abney and Teal set about making a new leaf pile to play in, which proves harder than they expected.", + "playcount" : 0, + "episode" : 26, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 1/S1E26.mp4", + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4261744" + }, + "runtime" : 660, + "tvshowid" : 138, + "title" : "The Leaf Sweep", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4261744.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "productioncode" : "", + "seasonid" : 560, + "episodeid" : 3017, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "1x26. The Leaf Sweep", + "firstaired" : "2012-02-09", + "cast" : [], + "director" : [ + "Joel Stewart" + ], + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 3018, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "2x01. The Very Cold Day", + "director" : [], + "cast" : [], + "firstaired" : "2012-02-10", + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4340241" + }, + "tvshowid" : 138, + "title" : "The Very Cold Day", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340241.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/" + }, + "productioncode" : "", + "seasonid" : 561, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "episode" : 1, + "plot" : "It is a very cold day. Abney, Teal, Neep and the Poc-Pocs have a wonderful time playing winter games.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340241.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E1.mp4", + "specialsortseason" : -1 + }, + { + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 3019, + "cast" : [], + "firstaired" : "2012-04-30", + "director" : [], + "label" : "2x02. Straw Hat Trouble", + "tvshowid" : 138, + "uniqueid" : { + "unknown" : "4340246" + }, + "runtime" : 660, + "lastplayed" : "", + "seasonid" : 561, + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340246.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Straw Hat Trouble", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E2.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340246.jpg/", + "votes" : "0", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "It is a hot and sunny day on the island, so Abney and Teal make themselves some shady straw hats. Then the weather turns and a strong wind starts blowing them into all sorts of trouble.", + "playcount" : 0, + "episode" : 2, + "dateadded" : "2016-08-26 09:16:57" + }, + { + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4340247" + }, + "runtime" : 660, + "tvshowid" : 138, + "title" : "The Visit", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340247.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "seasonid" : 561, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340247.jpg/", + "votes" : "0", + "plot" : "Neep's friends and relations come to the island for a visit, but their digging soon causes a few problems around the place.", + "episode" : 3, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E3.mp4", + "specialsortseason" : -1, + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 3020, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "2x03. The Visit", + "cast" : [], + "firstaired" : "2012-05-01", + "director" : [] + }, + { + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "episodeid" : 3021, + "writer" : [], + "director" : [], + "firstaired" : "2012-05-02", + "cast" : [], + "label" : "2x04. The Enormous Sneeze", + "tvshowid" : 138, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4340248" + }, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340248.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "seasonid" : 561, + "title" : "The Enormous Sneeze", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E4.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "plot" : "Teal is having a lovely time in the flowers that are blooming all over the island. She brings a bunch to Abney but they make him sneeze... and sneeze... and sneeze! His unstoppable sneezes get bigger and bigger and funny things start to happen.", + "episode" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340248.jpg/", + "votes" : "0" + }, + { + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340249.jpg/", + "votes" : "0", + "plot" : "Abney and Teal go fishing. Teal soon loses interest, but Abney finally catches something very interesting - a handbag, the contents of which cause all sorts of chaos.", + "playcount" : 0, + "episode" : 5, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E5.mp4", + "specialsortseason" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "title" : "The Handbag", + "userrating" : 0, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340249.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "seasonid" : 561, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4340249" + }, + "runtime" : 660, + "tvshowid" : 138, + "label" : "2x05. The Handbag", + "firstaired" : "2012-05-03", + "cast" : [], + "director" : [], + "episodeid" : 3022, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2 + }, + { + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E6.mp4", + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340250.jpg/", + "playcount" : 0, + "episode" : 6, + "plot" : "Abney and Teal construct a dragon. Neep puts on a brave face, but he isn't sure he wants to share the island with a scary monster!", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4340250" + }, + "runtime" : 660, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4340250.jpg/" + }, + "seasonid" : 561, + "title" : "Neep and the Dragon", + "userrating" : 0, + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 3023, + "writer" : [], + "cast" : [], + "firstaired" : "2012-05-04", + "director" : [], + "label" : "2x06. Neep and the Dragon", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "episodeid" : 3024, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "2x07. The Mysterious Mist", + "director" : [], + "firstaired" : "2012-10-28", + "cast" : [], + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4428287" + }, + "tvshowid" : 138, + "title" : "The Mysterious Mist", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428287.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "seasonid" : 561, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. Abney, Teal and Neep make mysterious noises on a misty day. They try to get Bop to join in the game but it's not so mysterious down by the lake.", + "playcount" : 0, + "episode" : 7, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428287.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E7.mp4", + "specialsortseason" : -1 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E8.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:57", + "playcount" : 0, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. It is a boiling hot day; much too hot to do anything apart from eat ice-cream and go swimming. But when Abney and Teal finally get to the lake there's something not quite right about it.", + "episode" : 8, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428288.jpg/", + "votes" : "0", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428288.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "seasonid" : 561, + "title" : "The Very Hot Day", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4428288" + }, + "director" : [], + "firstaired" : "2012-10-29", + "cast" : [], + "label" : "2x08. The Very Hot Day", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 3025, + "writer" : [], + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2 + }, + { + "label" : "2x09. Hiccups", + "director" : [], + "firstaired" : "2012-10-30", + "cast" : [], + "writer" : [], + "episodeid" : 3026, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 2, + "playcount" : 0, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. The Poc-Pocs have got hiccups. Teal finds the cure, but they are spreading! When they reach Bop something has to be done.", + "episode" : 9, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428289.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E9.mp4", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Hiccups", + "seasonid" : 561, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428289.jpg/" + }, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4428289" + }, + "lastplayed" : "", + "tvshowid" : 138 + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "writer" : [], + "episodeid" : 3027, + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "2x10. The Enormous Cabbage", + "director" : [], + "cast" : [], + "firstaired" : "2012-10-31", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4428290" + }, + "lastplayed" : "", + "tvshowid" : 138, + "userrating" : 0, + "title" : "The Enormous Cabbage", + "seasonid" : 561, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428290.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "productioncode" : "", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. Abney plants seeds in the moonlight. In the morning some have grown into lovely big cabbages. Abney and Teal decide to help out one that is struggling, which leads to big trouble.", + "episode" : 10, + "playcount" : 0, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428290.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E10.mp4", + "specialsortseason" : -1 + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 3028, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "2x11. The Summerhouse", + "director" : [], + "firstaired" : "2012-11-01", + "cast" : [], + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4428291" + }, + "tvshowid" : 138, + "title" : "The Summerhouse", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428291.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "seasonid" : 561, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "episode" : 11, + "playcount" : 0, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. When Abney and Teal have a snooze in Abney's new summerhouse, they don't wake up where they expect. Abney has to use his building skills to find them a way home.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4428291.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E11.mp4" + }, + { + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433121.jpg/", + "episode" : 12, + "playcount" : 0, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. Neep finds some wheels, Teal finds some wheels and finally, Abney gets hold of some wheels of his own. They are not brilliant at first - but soon they become a bit too brilliant!", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E12.mp4", + "specialsortseason" : -1, + "uniqueid" : { + "unknown" : "4433121" + }, + "runtime" : 660, + "lastplayed" : "", + "tvshowid" : 138, + "userrating" : 0, + "title" : "Brilliant Wheels", + "seasonid" : 561, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433121.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "writer" : [], + "episodeid" : 3029, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "2x12. Brilliant Wheels", + "firstaired" : "2012-11-04", + "cast" : [], + "director" : [], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "writer" : [], + "episodeid" : 3030, + "director" : [], + "firstaired" : "2012-11-05", + "cast" : [], + "label" : "2x13. Bop's Babies", + "season" : 2, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E13.mp4", + "specialsortseason" : -1, + "playcount" : 0, + "episode" : 13, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. On a beautiful springtime day, it looks like Bop has had little babies! Abney and Teal find out just how much trouble growing babies can be.", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433123.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "tvshowid" : 138, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4433123" + }, + "lastplayed" : "", + "seasonid" : 561, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433123.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Bop's Babies" + }, + { + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "writer" : [], + "episodeid" : 3031, + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "2x14. Sleep Digging", + "cast" : [], + "firstaired" : "2012-11-06", + "director" : [], + "uniqueid" : { + "unknown" : "4433125" + }, + "runtime" : 660, + "lastplayed" : "", + "tvshowid" : 138, + "userrating" : 0, + "title" : "Sleep Digging", + "seasonid" : 561, + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433125.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "productioncode" : "", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433125.jpg/", + "episode" : 14, + "plot" : "Animated adventures. Neep causes watery mischief all over the Island when he starts digging in his sleep.", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:57", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E14.mp4" + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [], + "firstaired" : "2012-11-07", + "director" : [], + "label" : "2x15. The Porridge Tower", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "writer" : [], + "episodeid" : 3032, + "seasonid" : 561, + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433126.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + "userrating" : 0, + "title" : "The Porridge Tower", + "tvshowid" : 138, + "uniqueid" : { + "unknown" : "4433126" + }, + "runtime" : 660, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E15.mp4", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433126.jpg/", + "votes" : "0", + "playcount" : 0, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. Abney is making porridge bread, but he just can't get the recipe right, and he ends up with lots of spare loaves and nothing to do with them.", + "episode" : 15, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortepisode" : -1, + "plot" : "Animated adventures of two friends who live on an island in the middle of the big city. Abney adds some shiny fish to his collection, but soon finds that they take up more room than expected. Now where can he get some sleep?", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 16, + "playcount" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433128.jpg/", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:57", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E16.mp4", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4433128" + }, + "lastplayed" : "", + "tvshowid" : 138, + "userrating" : 0, + "title" : "Abney's Aquarium", + "seasonid" : 561, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433128.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "productioncode" : "", + "writer" : [ + "Steve Roberts", + "Matilda Tristram" + ], + "episodeid" : 3033, + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "2x16. Abney's Aquarium", + "director" : [ + "Joel Stewart" + ], + "firstaired" : "2012-11-08", + "cast" : [], + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + } + }, + { + "seasonid" : 561, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433133.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "userrating" : 0, + "title" : "Shadows", + "tvshowid" : 138, + "uniqueid" : { + "unknown" : "4433133" + }, + "runtime" : 660, + "lastplayed" : "", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E17.mp4", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433133.jpg/", + "episode" : 17, + "plot" : "The moonlight is so strange and beautiful that it's hard for Abney to sleep. Teal decides to tire Abney out with an adventure, but she's soon feeling pretty sleepy herself. Luckily there's still a lot to look at.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "firstaired" : "2012-11-11", + "cast" : [], + "director" : [], + "label" : "2x17. Shadows", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 3034 + }, + { + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "plot" : "Animated adventures. Abney and Teal decide to set up a café. They're worried that they might not get any guests, but they needn't have worried!", + "episode" : 18, + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433134.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E18.mp4", + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4433134" + }, + "tvshowid" : 138, + "title" : "The Café", + "userrating" : 0, + "productioncode" : "", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433134.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "seasonid" : 561, + "episodeid" : 3035, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "label" : "2x18. The Café", + "director" : [], + "firstaired" : "2012-11-12", + "cast" : [], + "season" : 2, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2012-11-13", + "label" : "2x19. Abney's Precious Things", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 3036, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E19.mp4", + "playcount" : 0, + "plot" : "Animated adventures. Abney has so many precious things that he decides to put on a display. The display gets longer and longer until...", + "episode" : 19, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433136.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "seasonid" : 561, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433136.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "userrating" : 0, + "title" : "Abney's Precious Things", + "tvshowid" : 138, + "runtime" : 660, + "uniqueid" : { + "unknown" : "4433136" + }, + "lastplayed" : "" + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "firstaired" : "2012-11-14", + "cast" : [], + "director" : [], + "label" : "2x20. Frogs", + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "episodeid" : 3037, + "writer" : [], + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433137.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 561, + "title" : "Frogs", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4433137" + }, + "runtime" : 660, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E20.mp4", + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4433137.jpg/", + "plot" : "Animated adventures. A thunderstorm brings some visitors to the Island. Abney and Teal love their new friends, but Neep is not so sure.", + "playcount" : 0, + "episode" : 20, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + } + }, + { + "title" : "Sticky Neep", + "userrating" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4437855.jpg/" + }, + "productioncode" : "", + "seasonid" : 561, + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4437855" + }, + "tvshowid" : 138, + "dateadded" : "2016-08-26 09:16:57", + "episode" : 21, + "playcount" : 0, + "plot" : "Animated adventures. Neep gets himself into a sticky situation copying tricks from the circus. Abney and Teal help him to get cleaned up.", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4437855.jpg/", + "votes" : "0", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E21.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2, + "label" : "2x21. Sticky Neep", + "director" : [], + "cast" : [], + "firstaired" : "2012-11-15", + "episodeid" : 3038, + "writer" : [], + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0 + }, + { + "season" : 2, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "episodeid" : 3039, + "writer" : [], + "cast" : [], + "firstaired" : "2012-11-18", + "director" : [], + "label" : "2x22. The Porridge Machine", + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4439602" + }, + "runtime" : 660, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439602.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "seasonid" : 561, + "title" : "The Porridge Machine", + "userrating" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E22.mp4", + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439602.jpg/", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "plot" : "Abney and Teal decide to build a Porridge Machine. Oh dear, the machine is rather tiring, and it has some other unexpected results too!", + "episode" : 22 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [], + "firstaired" : "2012-11-19", + "director" : [], + "label" : "2x23. The Camera", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 0, + "writer" : [], + "episodeid" : 3040, + "seasonid" : 561, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439603.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "userrating" : 0, + "title" : "The Camera", + "tvshowid" : 138, + "uniqueid" : { + "unknown" : "4439603" + }, + "runtime" : 660, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E23.mp4", + "specialsortseason" : -1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439603.jpg/", + "votes" : "0", + "plot" : "Abney's got a camera. Everybody do something fun! Soon Neep gets a go too and his photos are really special.", + "episode" : 23, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "playcount" : 0, + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/" + }, + { + "lastplayed" : "", + "runtime" : 660, + "uniqueid" : { + "unknown" : "4439604" + }, + "tvshowid" : 138, + "title" : "Spring Cleaning", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439604.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "seasonid" : 561, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "episode" : 24, + "plot" : "Abney loves spring cleaning. Teal and Neep just love springing. Soon they need to spring pretty fast, away from a scary monster!", + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439604.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E24.mp4", + "specialsortseason" : -1, + "season" : 2, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 3041, + "writer" : [], + "rating" : 0, + "showtitle" : "The Adventures of Abney & Teal", + "label" : "2x24. Spring Cleaning", + "director" : [], + "cast" : [], + "firstaired" : "2012-11-20" + }, + { + "productioncode" : "", + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439605.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/" + }, + "seasonid" : 561, + "title" : "Spots", + "userrating" : 0, + "tvshowid" : 138, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4439605" + }, + "runtime" : 660, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E25.mp4", + "dateadded" : "2016-08-26 09:16:57", + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439605.jpg/", + "ratings" : { + "default" : { + "default" : true, + "rating" : 10, + "votes" : 1 + } + }, + "plot" : "Abney and Teal are painting all sorts of things, but Neep won't join in. Soon everyone joins in with Neep instead. They all need to think of something clever to help them with their spots.", + "episode" : 25, + "playcount" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 2, + "cast" : [], + "firstaired" : "2012-11-21", + "director" : [], + "label" : "2x25. Spots", + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 10, + "episodeid" : 3042, + "writer" : [] + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439606.jpg/", + "votes" : "1", + "plot" : "Abney is trying to write poems. Teal just wants to make noise! Maybe they can find a way to do both together?", + "playcount" : 0, + "episode" : 26, + "ratings" : { + "default" : { + "default" : true, + "rating" : 10, + "votes" : 1 + } + }, + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/Season 2/S2E26.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "specialsortepisode" : -1, + "userrating" : 0, + "title" : "Rock Music", + "seasonid" : 561, + "productioncode" : "", + "art" : { + "thumb" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fepisodes%2f252308%2f4439606.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/" + }, + "uniqueid" : { + "unknown" : "4439606" + }, + "runtime" : 660, + "lastplayed" : "", + "tvshowid" : 138, + "label" : "2x26. Rock Music", + "cast" : [], + "firstaired" : "2012-11-22", + "director" : [], + "writer" : [], + "episodeid" : 3043, + "showtitle" : "The Adventures of Abney & Teal", + "rating" : 10, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 2 + }, + { + "director" : [], + "cast" : [], + "firstaired" : "2011-05-05", + "label" : "3x01. Episode 1", + "showtitle" : "Air Ways", + "rating" : 0, + "writer" : [], + "episodeid" : 309, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 3, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Airways (2009)/Season 3/S3E1.mp4", + "plot" : "A grandmother travelling to look after her grandkids is grounded; an Englishman is off to Hobart to meet his online love; and police are called when a passenger becomes physically aggressive.", + "playcount" : 1, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "episode" : 1, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f104171-1.jpg/", + "seasonid" : 24, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f104171-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f104171-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f104171-g.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Episode 1", + "tvshowid" : 5, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4096024" + }, + "lastplayed" : "2017-02-06 16:41:56" + }, + { + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0, + "writer" : [], + "episodeid" : 310, + "director" : [], + "cast" : [], + "firstaired" : "2012-05-29", + "label" : "1x01. Harvest Party Scandal", + "tvshowid" : 6, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4327528" + }, + "lastplayed" : "", + "seasonid" : 27, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "userrating" : 0, + "title" : "Harvest Party Scandal", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E1.mp4", + "plot" : "The annual harvest puts the Hutterite colony in danger of survival; Claudia shocks everyone.", + "playcount" : 0, + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:57" + }, + { + "dateadded" : "2016-08-26 09:16:57", + "plot" : "The elders from Canada arrive and lay down the law; Bertha and Rita receive their punishment, a shunning.", + "episode" : 2, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E2.mp4", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "specialsortepisode" : -1, + "title" : "The Shunning", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 27, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4331768" + }, + "tvshowid" : 6, + "label" : "1x02. The Shunning", + "director" : [], + "cast" : [], + "firstaired" : "2012-06-05", + "episodeid" : 311, + "writer" : [], + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1 + }, + { + "userrating" : 0, + "title" : "Rockin Road Trip", + "seasonid" : 27, + "productioncode" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4334505" + }, + "lastplayed" : "", + "tvshowid" : 6, + "episode" : 3, + "plot" : "Relationships are at the top of everyone's minds when the young people attend a wedding in Canada.", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "playcount" : 0, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:57", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E3.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x03. Rockin Road Trip", + "director" : [], + "cast" : [], + "firstaired" : "2012-06-12", + "writer" : [], + "episodeid" : 312, + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0 + }, + { + "tvshowid" : 6, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4338916" + }, + "runtime" : 1800, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 27, + "title" : "Battle of the Sexes", + "userrating" : 0, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E4.mp4", + "dateadded" : "2016-08-26 09:16:57", + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "Claudia goes against tradition when she decides to work with the men.", + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "episode" : 4, + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "rating" : 0, + "showtitle" : "American Colony Meet the Hutterites", + "episodeid" : 313, + "writer" : [], + "cast" : [], + "firstaired" : "2012-06-19", + "director" : [], + "label" : "1x04. Battle of the Sexes" + }, + { + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "playcount" : 0, + "plot" : "The hunting season coincides with a jerky competition; Claudia wants an iPad but has no way to pay for it.", + "episode" : 5, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E5.mp4", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4343071" + }, + "tvshowid" : 6, + "title" : "Shoot to Kill", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 27, + "episodeid" : 314, + "writer" : [], + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0, + "label" : "1x05. Shoot to Kill", + "director" : [], + "cast" : [], + "firstaired" : "2012-06-26", + "season" : 1, + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + } + }, + { + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0, + "episodeid" : 315, + "writer" : [], + "cast" : [], + "firstaired" : "2012-07-03", + "director" : [], + "label" : "1x06. ER Bound", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E6.mp4", + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "plot" : "Tammy considers dropping out of school; Wesley is rushed to the emergency room.", + "episode" : 6, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "tvshowid" : 6, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4345885" + }, + "runtime" : 1800, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 27, + "title" : "ER Bound", + "userrating" : 0 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x07. Show Me the Money", + "director" : [], + "cast" : [], + "firstaired" : "2012-07-10", + "writer" : [], + "episodeid" : 316, + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0, + "userrating" : 0, + "title" : "Show Me the Money", + "seasonid" : 27, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/" + }, + "productioncode" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4350427" + }, + "lastplayed" : "", + "tvshowid" : 6, + "plot" : "Marvin feels the pressure mount as the colony bills pile up; Claudia risks punishment for wearing non-Hutterite clothes.", + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "episode" : 7, + "playcount" : 0, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:57", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E7.mp4", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "specialsortepisode" : -1 + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 317, + "writer" : [], + "rating" : 0, + "showtitle" : "American Colony Meet the Hutterites", + "label" : "1x08. Breaking the Law", + "director" : [], + "cast" : [], + "firstaired" : "2012-07-17", + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4361962" + }, + "tvshowid" : 6, + "title" : "Breaking the Law", + "userrating" : 0, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "productioncode" : "", + "seasonid" : 27, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:57", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "plot" : "Toby burns the candle at both ends caring for the new-born calves; Clinton continues to shirk responsibility.", + "episode" : 8, + "playcount" : 0, + "thumbnail" : "", + "votes" : "0", + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E8.mp4" + }, + { + "showtitle" : "American Colony Meet the Hutterites", + "rating" : 0, + "episodeid" : 318, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "2012-07-24", + "label" : "1x09. Were Not a Cult", + "season" : 1, + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "streamdetails" : { + "audio" : [], + "video" : [], + "subtitle" : [] + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E9.mp4", + "dateadded" : "2016-08-26 09:16:57", + "plot" : "Wesley tries to dispel some long-held Hutterite stereotypes; Claudia considers leaving the colony for college.", + "episode" : 9, + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "votes" : "0", + "thumbnail" : "", + "tvshowid" : 6, + "lastplayed" : "", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "4361963" + }, + "productioncode" : "", + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/" + }, + "seasonid" : 27, + "title" : "Were Not a Cult", + "userrating" : 0 + }, + { + "seasonid" : 27, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Barnburners", + "tvshowid" : 6, + "uniqueid" : { + "unknown" : "4361964" + }, + "runtime" : 1800, + "lastplayed" : "", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/Season 1/S1E10.mp4", + "specialsortseason" : -1, + "votes" : "0", + "thumbnail" : "", + "playcount" : 0, + "plot" : "The calving barn goes up in flames; Claudia hears from the college she applied to.", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 10, + "dateadded" : "2016-08-26 09:16:57", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1, + "cast" : [], + "firstaired" : "2012-07-31", + "director" : [], + "label" : "1x10. Barnburners", + "rating" : 0, + "showtitle" : "American Colony Meet the Hutterites", + "writer" : [], + "episodeid" : 319 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E1.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "Meet Mose Gingerich, the de facto mayor of the ex-Amish community in Columbia, Missouri. Born and raised Amish, Mose left the community nine years ago, and has been helping others make the transition ever since. For the Amish, the decision to leave the faith is enormous—leaving means permanent shunning by their friends, family, and community, and, according to their beliefs, an afterlife in hell.", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "episode" : 1, + "playcount" : 0, + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "seasonid" : 30, + "title" : "Amish 101", + "userrating" : 0, + "tvshowid" : 7, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4315717" + }, + "runtime" : 3600, + "cast" : [], + "firstaired" : "2012-04-24", + "director" : [], + "label" : "1x01. Amish 101", + "rating" : 0, + "showtitle" : "Amish: Out Of Order", + "episodeid" : 320, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "cast" : [], + "firstaired" : "2012-04-24", + "director" : [], + "label" : "1x02. Culture Clash", + "showtitle" : "Amish: Out Of Order", + "rating" : 0, + "episodeid" : 321, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E2.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "episode" : 2, + "plot" : "Mose is usually the one to help ex-Amish youths transition into the “English” life, but in this episode, he has a crisis of faith when Michaela, a non-Amish teenager whose heart is set on joining the Amish, challenges his views. Michaela is drawn to the simplicity of Amish culture and their strong devotion to family and community—but joining from the outside isn't easy.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "seasonid" : 30, + "title" : "Culture Clash", + "userrating" : 0, + "tvshowid" : 7, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4315718" + }, + "runtime" : 3600 + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E3.mp4", + "specialsortseason" : -1, + "votes" : "0", + "thumbnail" : "", + "episode" : 3, + "plot" : "Ex-Amish teenager Jonas has attained the ultimate teenage dream—a driver’s license. But his new-found freedom is cut short when a terrible car crash lands him in the hospital, fighting for his life. Jonas’ accident devastates the ex-Amish community. And matters are made worse when his Amish father tells him that, if he had died outside the Amish faith, he would have spent an eternity in hell.", + "playcount" : 0, + "ratings" : { + "default" : { + "default" : true, + "rating" : 0, + "votes" : 0 + } + }, + "dateadded" : "2016-08-26 09:16:59", + "specialsortepisode" : -1, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "seasonid" : 30, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "productioncode" : "", + "userrating" : 0, + "title" : "Can't Go Home Again", + "tvshowid" : 7, + "uniqueid" : { + "unknown" : "4315719" + }, + "runtime" : 3600, + "lastplayed" : "", + "cast" : [], + "firstaired" : "2012-05-01", + "director" : [], + "label" : "1x03. Can't Go Home Again", + "rating" : 0, + "showtitle" : "Amish: Out Of Order", + "writer" : [], + "episodeid" : 322, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "rating" : 0, + "showtitle" : "Amish: Out Of Order", + "episodeid" : 323, + "writer" : [], + "director" : [], + "cast" : [], + "firstaired" : "2012-05-08", + "label" : "1x04. 9-to-5 Amish", + "season" : 1, + "resume" : { + "position" : 0, + "total" : 0 + }, + "originaltitle" : "", + "specialsortepisode" : -1, + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E4.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "playcount" : 0, + "episode" : 4, + "plot" : "The Amish view hard work and physical labor as integral to their identity, lifestyle and self-sufficiency. Michaela, a non-Amish teenager who wishes to join the Amish church to escape her troubled past and live a simpler life, goes to stay with Rachel, a very traditional Old Order Amish woman — but only on the condition that she helps with chores.", + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "tvshowid" : 7, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4315720" + }, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 30, + "title" : "9-to-5 Amish", + "userrating" : 0 + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 324, + "writer" : [], + "showtitle" : "Amish: Out Of Order", + "rating" : 0, + "label" : "1x05. Amish in Public", + "firstaired" : "2012-05-15", + "cast" : [], + "director" : [], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4315721" + }, + "runtime" : 3600, + "tvshowid" : 7, + "title" : "Amish in Public", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 30, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "episode" : 5, + "playcount" : 0, + "plot" : "The Amish have a complicated relationship with modern media — shunning phones, television and the Internet, but still being depicted on modern media. After leaving the Amish, Mose was featured in the reality TV show Amish in the City, which gave him tremendous insight into the English perception of the Amish.", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E5.mp4" + }, + { + "userrating" : 0, + "title" : "Mending Fences", + "seasonid" : 30, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "productioncode" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4331766" + }, + "lastplayed" : "", + "tvshowid" : 7, + "episode" : 6, + "plot" : "Mose tries to reopen the lines of communication with his mother who still sees him as an outcast.", + "playcount" : 0, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E6.mp4", + "specialsortseason" : -1, + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "specialsortepisode" : -1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "season" : 1, + "label" : "1x06. Mending Fences", + "director" : [], + "cast" : [], + "firstaired" : "2012-05-22", + "writer" : [], + "episodeid" : 325, + "rating" : 0, + "showtitle" : "Amish: Out Of Order" + }, + { + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E7.mp4", + "specialsortseason" : -1, + "dateadded" : "2016-08-26 09:16:59", + "episode" : 7, + "plot" : "The role that religion plays in the lives of Amish and ex-Amish alike; Mose confronts his conflicted beliefs.", + "playcount" : 0, + "ratings" : { + "default" : { + "rating" : 0, + "default" : true, + "votes" : 0 + } + }, + "thumbnail" : "", + "votes" : "0", + "specialsortepisode" : -1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "streamdetails" : { + "subtitle" : [], + "audio" : [], + "video" : [] + }, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 30, + "title" : "Change of Faith", + "userrating" : 0, + "tvshowid" : 7, + "lastplayed" : "", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "4331767" + }, + "director" : [], + "cast" : [], + "firstaired" : "2012-05-29", + "label" : "1x07. Change of Faith", + "showtitle" : "Amish: Out Of Order", + "rating" : 0, + "episodeid" : 326, + "writer" : [], + "resume" : { + "total" : 0, + "position" : 0 + }, + "originaltitle" : "", + "season" : 1 + }, + { + "originaltitle" : "", + "resume" : { + "total" : 0, + "position" : 0 + }, + "season" : 1, + "label" : "1x09. Family Affairs", + "cast" : [], + "firstaired" : "2012-06-12", + "director" : [], + "episodeid" : 327, + "writer" : [], + "rating" : 0, + "showtitle" : "Amish: Out Of Order", + "title" : "Family Affairs", + "userrating" : 0, + "productioncode" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "seasonid" : 30, + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4334504" + }, + "runtime" : 3600, + "tvshowid" : 7, + "dateadded" : "2016-08-26 09:16:59", + "votes" : "0", + "thumbnail" : "", + "plot" : "Michaela realizes how much she misses her mother and reaches out to her.", + "episode" : 9, + "ratings" : { + "default" : { + "votes" : 0, + "default" : true, + "rating" : 0 + } + }, + "playcount" : 0, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E9.mp4", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "streamdetails" : { + "video" : [], + "audio" : [], + "subtitle" : [] + }, + "specialsortepisode" : -1 + }, + { + "season" : 1, + "originaltitle" : "", + "resume" : { + "position" : 0, + "total" : 0 + }, + "episodeid" : 328, + "writer" : [], + "showtitle" : "Amish: Out Of Order", + "rating" : 0, + "label" : "1x10. A Very Ex-Amish Christmas", + "firstaired" : "2012-06-19", + "cast" : [], + "director" : [], + "lastplayed" : "", + "uniqueid" : { + "unknown" : "4338912" + }, + "runtime" : 3600, + "tvshowid" : 7, + "title" : "A Very Ex-Amish Christmas", + "userrating" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "productioncode" : "", + "seasonid" : 30, + "streamdetails" : { + "subtitle" : [], + "video" : [], + "audio" : [] + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "specialsortepisode" : -1, + "dateadded" : "2016-08-26 09:16:59", + "thumbnail" : "", + "votes" : "0", + "playcount" : 0, + "plot" : "Moses hosts a reunion for the ex-Amish community; the community creates a memorial for Cephas Yoder.", + "episode" : 10, + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 0, + "default" : true + } + }, + "specialsortseason" : -1, + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/Season 1/S1E10.mp4" + } + ] + } +} diff --git a/app/src/testUtils/assets/VideoLibrary.GetMusicVideos.json b/app/src/testUtils/assets/VideoLibrary.GetMusicVideos.json new file mode 100644 index 0000000..c0e2eb6 --- /dev/null +++ b/app/src/testUtils/assets/VideoLibrary.GetMusicVideos.json @@ -0,0 +1,581 @@ +{ + "id" : "libMovies", + "jsonrpc" : "2.0", + "result" : { + "musicvideos" : [ + { + "album" : "...Baby One More Time", + "director" : [ + "Nigel Dick" + ], + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fbaby-one-more-time-4dcff7453745a.jpg/" + }, + "plot" : "\"(You Drive Me) Crazy\" is a song by American recording artist Britney Spears from her debut studio album, ...Baby One More Time (1999). Written and produced by Max Martin, Per Magnusson and David Kreuger, with additional writing by Jörgen Elofsson and remix by Martin and Rami Yacoub, it was released as the album's third single on August 23, 1999 by Jive Records. It was remixed for the soundtrack of Drive Me Crazy. \"(You Drive Me) Crazy\" is a teen pop song that draws influences from R&B and rock. The song garnered positive reviews from music critics, some of whom praised its simple formula and noted similarities to Spears' debut single, \"...Baby One More Time\".\n\n\"(You Drive Me) Crazy\" was a commercial success, and peaked inside the top ten on the singles charts of seventeen countries. In the United Kingdom, it became Spears' third consecutive single to peak inside the top five, while it reached number 10 in the United States' Hot 100, and peaked at number one in Belgium (Wallonia). An accompanying music video, directed by Nigel Dick, and portrayed Spears as a waitress of a dance club, and performed a highly choreographed dance routine with the other waitresses. The video premiered on MTV's Making the Video special, and featured cameo appearances of actors Melissa Joan Hart and Adrien Grenier. As part of promotion for the song, Spears performed the song at the 1999 MTV Europe Music Awards and 1999 Billboard Music Awards. It has also been included on five of her concert tours.", + "resume" : { + "position" : 0, + "total" : 0 + }, + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fbaby-one-more-time-4dcff7453745a.jpg/", + "fanart" : "", + "rating" : 0, + "year" : 1999, + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Britney Spears - (You Drive Me) Crazy (1999).mp4", + "dateadded" : "2016-12-29 16:50:28", + "userrating" : 0, + "artist" : [ + "Britney Spears" + ], + "lastplayed" : "2017-02-28 11:07:15", + "studio" : [], + "tag" : [], + "title" : "(You Drive Me) Crazy", + "label" : "(You Drive Me) Crazy", + "runtime" : 12, + "track" : -1, + "genre" : [ + "Pop" + ], + "streamdetails" : { + "audio" : [ + { + "channels" : 2, + "language" : "und", + "codec" : "aac" + } + ], + "video" : [ + { + "width" : 480, + "language" : "und", + "height" : 360, + "duration" : 12, + "stereomode" : "", + "aspect" : 1.33333301544189, + "codec" : "h264" + } + ], + "subtitle" : [] + }, + "musicvideoid" : 60, + "premiered" : "1999-01-01", + "playcount" : 1 + }, + { + "resume" : { + "total" : 0, + "position" : 0 + }, + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fsvpxyw1364737910.jpg/" + }, + "director" : [], + "plot" : "", + "album" : "Rubber Factory", + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/The Black Keys - 10 A.M. Automatic (2004).mp4", + "rating" : 0, + "year" : 2004, + "fanart" : "", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fsvpxyw1364737910.jpg/", + "track" : -1, + "label" : "10 A.M. Automatic", + "runtime" : 12, + "lastplayed" : "", + "studio" : [], + "title" : "10 A.M. Automatic", + "tag" : [], + "dateadded" : "2016-12-29 16:50:29", + "artist" : [ + "The Black Keys" + ], + "userrating" : 0, + "premiered" : "2004-01-01", + "playcount" : 0, + "musicvideoid" : 370, + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "channels" : 2, + "language" : "und", + "codec" : "aac" + } + ], + "video" : [ + { + "language" : "", + "height" : 360, + "width" : 480, + "duration" : 12, + "stereomode" : "", + "aspect" : 1.33333301544189, + "codec" : "avc1" + } + ] + }, + "genre" : [ + "Indie" + ] + }, + { + "runtime" : 12, + "label" : "99 Problems", + "track" : -1, + "userrating" : 0, + "artist" : [ + "Jay-Z" + ], + "dateadded" : "2016-12-29 16:50:28", + "title" : "99 Problems", + "tag" : [], + "studio" : [ + "Anonymous Content" + ], + "lastplayed" : "", + "musicvideoid" : 164, + "streamdetails" : { + "audio" : [ + { + "codec" : "aac", + "channels" : 2, + "language" : "und" + } + ], + "video" : [ + { + "aspect" : 1.33333301544189, + "stereomode" : "", + "codec" : "avc1", + "duration" : 12, + "width" : 480, + "language" : "", + "height" : 360 + } + ], + "subtitle" : [] + }, + "premiered" : "2003-01-01", + "playcount" : 0, + "genre" : [ + "Hip-Hop" + ], + "director" : [ + "Mark Romanek" + ], + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fthe-black-album-4ee5475d9f478.jpg/" + }, + "plot" : "\"99 Problems\" is the third single released by American rapper Jay-Z in 2004 from The Black Album. The song was originally written by rapper Ice-T in 1993. Throughout the song Jay-Z tells a story about dealing with a racist police officer who wants to illegally search his car, dealing with rap critics, and dealing with an aggressor. The song reached number 30 on the Billboard Hot 100.\nThe track was produced by Rick Rubin, his first hip hop production in many years. Rubin provided Jay-Z with a guitar riff and stripped-down beat that were once his trademarks. In creating the track Rubin used some classic 1980s sample staples such as \"The Big Beat\" by Billy Squier, \"Long Red\" by Mountain, and \"Get Me Back On Time\" by Wilson Pickett. These songs were long coveted by early hip hop producers, in particular the drum beat from Big Beat, used most famously by Run–D.M.C. on \"Here We Go\" in 1985 and by British rapper Dizzee Rascal a year prior to Jay-Z on his break-through hit \"Fix Up, Look Sharp\". It also featured on the popular Ultimate Breaks and Beats series.\nWhile the song's meaning is widely debated, the chorus \"If you're having girl problems, I feel bad for you son/I've got 99 problems but a bitch ain't one\" was defined in Jay-Z's book, Decoded, as referring to a police dog. Jay-Z wrote that in 1994 he was pulled over by police while carrying cocaine in a secret compartment in his sunroof. Jay-Z refused to let the police search the car and the police called for the drug sniffing dogs. However, the dogs never showed up and the police had to let Jay-Z go. Moments after he drove away, he wrote that he saw a police car with the dogs drive by.\nThe title and chorus are taken from Ice-T's \"99 Problems\" from his 1993 album Home Invasion. The song featured Brother Marquis of 2 Live Crew. The original song was more profane and describes a wide range of sexual conquests. Portions of Ice-T's original lyrics were similarly quoted in a song by fellow rapper Trick Daddy on a track also titled \"99 Problems\" from his 2001 album Thugs Are Us. Jay-Z begins his third verse directly quoting lines from Bun B's opening verse off the track \"Touched\" from the UGK album Ridin' Dirty.", + "resume" : { + "position" : 0, + "total" : 0 + }, + "album" : "The Black Album", + "year" : 2003, + "rating" : 0, + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Jay-Z - 99 Problems (2004).mp4", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fthe-black-album-4ee5475d9f478.jpg/", + "fanart" : "" + }, + { + "album" : "Dirty", + "resume" : { + "total" : 0, + "position" : 0 + }, + "plot" : "", + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fdirty-50030abf884f2.jpg/" + }, + "director" : [ + "Tamra Davis" + ], + "fanart" : "", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fdirty-50030abf884f2.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Sonic Youth - 100% (1992).mp4", + "rating" : 0, + "year" : 1992, + "lastplayed" : "", + "studio" : [], + "tag" : [], + "title" : "100%", + "dateadded" : "2016-12-29 16:50:28", + "userrating" : 0, + "artist" : [ + "Sonic Youth" + ], + "track" : -1, + "label" : "100%", + "runtime" : 12, + "genre" : [ + "Alternative Rock" + ], + "premiered" : "1992-01-01", + "playcount" : 0, + "streamdetails" : { + "audio" : [ + { + "language" : "und", + "channels" : 2, + "codec" : "aac" + } + ], + "video" : [ + { + "stereomode" : "", + "aspect" : 1.33333301544189, + "codec" : "avc1", + "width" : 480, + "language" : "", + "height" : 360, + "duration" : 12 + } + ], + "subtitle" : [] + }, + "musicvideoid" : 349 + }, + { + "resume" : { + "position" : 0, + "total" : 0 + }, + "art" : { + "thumb" : "image://video@%2fUsers%2fmartijn%2fProjects%2fdummymediafiles%2fmedia%2fmusicvideos%2fPeter%20Himmelman%20-%20245%20Days%20(1990).mp4/" + }, + "director" : [], + "plot" : "", + "album" : "Synesthesia", + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Peter Himmelman - 245 Days (1990).mp4", + "year" : 1989, + "rating" : 0, + "fanart" : "", + "thumbnail" : "image://video@%2fUsers%2fmartijn%2fProjects%2fdummymediafiles%2fmedia%2fmusicvideos%2fPeter%20Himmelman%20-%20245%20Days%20(1990).mp4/", + "track" : -1, + "runtime" : 12, + "label" : "245 Days", + "tag" : [], + "title" : "245 Days", + "lastplayed" : "", + "studio" : [], + "artist" : [ + "Peter Himmelman" + ], + "userrating" : 0, + "dateadded" : "2016-12-29 16:50:28", + "premiered" : "1989-01-01", + "playcount" : 0, + "streamdetails" : { + "audio" : [ + { + "language" : "und", + "channels" : 2, + "codec" : "aac" + } + ], + "video" : [ + { + "stereomode" : "", + "codec" : "avc1", + "aspect" : 1.33333301544189, + "duration" : 12, + "width" : 480, + "language" : "", + "height" : 360 + } + ], + "subtitle" : [] + }, + "musicvideoid" : 297, + "genre" : [ + "..." + ] + }, + { + "dateadded" : "2016-12-29 16:50:28", + "artist" : [ + "Public Enemy" + ], + "userrating" : 0, + "studio" : [], + "lastplayed" : "2017-03-02 10:43:26", + "tag" : [], + "title" : "911 Is a Joke", + "label" : "911 Is a Joke", + "runtime" : 12, + "track" : -1, + "genre" : [ + "Hip-Hop" + ], + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "codec" : "aac", + "language" : "und", + "channels" : 2 + } + ], + "video" : [ + { + "codec" : "h264", + "stereomode" : "", + "aspect" : 1.33333301544189, + "language" : "und", + "height" : 360, + "width" : 480, + "duration" : 12 + } + ] + }, + "musicvideoid" : 306, + "premiered" : "1990-01-01", + "playcount" : 1, + "album" : "Fear of a Black Planet", + "director" : [], + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2ffear-of-a-black-planet-526965153a1e4.jpg/" + }, + "plot" : "\"911 Is a Joke\" is a 1990 song by American hip hop group Public Enemy, from their third album, Fear of a Black Planet. The song is solely done by Flavor Flav. It was released as a single and became a hit in June 1990, reaching number 15 on the Hot R&B/Hip-Hop Singles & Tracks chart, and number 1 on the Hot Rap Singles chart, becoming their second number-one rap chart hit after \"Fight the Power\". It also reached number one on the Bubbling Under Hot 100 Singles chart. This was due largely to its sales, which were unusually high for the level of mainstream airplay it received; Billboard reported that only one of the stations on its Top 40 panel was playing it.\n\nThe song is about the lack of response to emergency calls in a black neighborhood, but specifically references the poor response by paramedic crews and not the police, which is a common misconception regarding the track; the \"911\" in the title of the song refers to 9-1-1, the emergency telephone number used in North America.", + "resume" : { + "total" : 0, + "position" : 0 + }, + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2ffear-of-a-black-planet-526965153a1e4.jpg/", + "fanart" : "", + "rating" : 0, + "year" : 1990, + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Public Enemy - 911 is a Joke (1990).mp4" + }, + { + "label" : "A Case of You", + "runtime" : 12, + "track" : -1, + "dateadded" : "2016-12-29 16:50:28", + "userrating" : 0, + "artist" : [ + "James Blake" + ], + "lastplayed" : "", + "studio" : [], + "tag" : [], + "title" : "A Case of You", + "streamdetails" : { + "audio" : [ + { + "channels" : 2, + "language" : "und", + "codec" : "aac" + } + ], + "video" : [ + { + "width" : 480, + "height" : 360, + "language" : "", + "duration" : 12, + "stereomode" : "", + "aspect" : 1.33333301544189, + "codec" : "avc1" + } + ], + "subtitle" : [] + }, + "musicvideoid" : 160, + "premiered" : "2011-01-01", + "playcount" : 0, + "genre" : [ + "Electronic" + ], + "director" : [], + "plot" : "", + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2ftyswrr1377556931.jpg/" + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "album" : "Enough Thunder", + "rating" : 0, + "year" : 2011, + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/James Blake - A Case Of You (2011).mp4", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2ftyswrr1377556931.jpg/", + "fanart" : "" + }, + { + "track" : -1, + "label" : "A Little Respect", + "runtime" : 12, + "studio" : [], + "lastplayed" : "", + "tag" : [], + "title" : "A Little Respect", + "dateadded" : "2016-12-29 16:50:28", + "artist" : [ + "Wheatus" + ], + "userrating" : 0, + "premiered" : "2000-01-01", + "playcount" : 0, + "musicvideoid" : 430, + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "channels" : 2, + "language" : "und", + "codec" : "aac" + } + ], + "video" : [ + { + "stereomode" : "", + "codec" : "avc1", + "aspect" : 1.33333301544189, + "duration" : 12, + "language" : "", + "height" : 360, + "width" : 480 + } + ] + }, + "genre" : [ + "Rock" + ], + "resume" : { + "total" : 0, + "position" : 0 + }, + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fwheatus-5144f1c42ea0a.jpg/" + }, + "plot" : "", + "director" : [], + "album" : "Wheatus", + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Wheatus - A Little Respect (2000).mp4", + "rating" : 0, + "year" : 2000, + "fanart" : "", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2fwheatus-5144f1c42ea0a.jpg/" + }, + { + "rating" : 0, + "year" : 1996, + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/Counting Crows - A Long December (1996).mp4", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2frecovering-the-satellites-4dcfda1792ec0.jpg/", + "fanart" : "", + "plot" : "", + "director" : [], + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2frecovering-the-satellites-4dcfda1792ec0.jpg/" + }, + "resume" : { + "total" : 0, + "position" : 0 + }, + "album" : "Recovering the Satellites", + "musicvideoid" : 79, + "streamdetails" : { + "video" : [ + { + "duration" : 12, + "width" : 480, + "height" : 360, + "language" : "", + "aspect" : 1.33333301544189, + "stereomode" : "", + "codec" : "avc1" + } + ], + "audio" : [ + { + "language" : "und", + "channels" : 2, + "codec" : "aac" + } + ], + "subtitle" : [] + }, + "premiered" : "1996-01-01", + "playcount" : 0, + "genre" : [ + "Alternative Rock" + ], + "label" : "A Long December", + "runtime" : 12, + "track" : -1, + "dateadded" : "2016-12-29 16:50:28", + "artist" : [ + "Counting Crows" + ], + "userrating" : 0, + "studio" : [], + "lastplayed" : "", + "tag" : [], + "title" : "A Long December" + }, + { + "genre" : [ + "Folk" + ], + "premiered" : "1985-01-01", + "playcount" : 0, + "streamdetails" : { + "subtitle" : [], + "audio" : [ + { + "channels" : 2, + "language" : "und", + "codec" : "aac" + } + ], + "video" : [ + { + "stereomode" : "", + "aspect" : 1.33333301544189, + "codec" : "avc1", + "duration" : 12, + "language" : "", + "height" : 360, + "width" : 480 + } + ] + }, + "musicvideoid" : 390, + "tag" : [], + "title" : "A Pair of Brown Eyes", + "lastplayed" : "", + "studio" : [], + "artist" : [ + "The Pogues" + ], + "userrating" : 0, + "dateadded" : "2016-12-29 16:50:28", + "track" : -1, + "runtime" : 12, + "label" : "A Pair of Brown Eyes", + "fanart" : "", + "thumbnail" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2frum-sodomy--the-lash-52f1dda495de3.jpg/", + "file" : "/Users/martijn/Projects/dummymediafiles/media/musicvideos/The Pogues - A Pair of Brown Eyes (1985).mp4", + "year" : 1985, + "rating" : 0, + "album" : "Rum Sodomy & the Lash", + "resume" : { + "position" : 0, + "total" : 0 + }, + "art" : { + "poster" : "image://http%3a%2f%2fwww.theaudiodb.com%2fimages%2fmedia%2falbum%2fthumb%2frum-sodomy--the-lash-52f1dda495de3.jpg/" + }, + "director" : [], + "plot" : "" + } + ], + "limits" : { + "total" : 439, + "start" : 0, + "end" : 10 + } + } +} diff --git a/app/src/testUtils/assets/VideoLibrary.GetSeasons.json b/app/src/testUtils/assets/VideoLibrary.GetSeasons.json new file mode 100644 index 0000000..15600c5 --- /dev/null +++ b/app/src/testUtils/assets/VideoLibrary.GetSeasons.json @@ -0,0 +1,465 @@ +{ + "id" : "libTVShowSeasons", + "jsonrpc" : "2.0", + "result" : { + "limits" : { + "end" : 21, + "total" : 21, + "start" : 0 + }, + "seasons" : [ + { + "playcount" : 0, + "episode" : 8, + "label" : "Season 1", + "userrating" : 0, + "thumbnail" : "", + "watchedepisodes" : 3, + "seasonid" : 6, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/" + }, + "fanart" : "", + "showtitle" : "3", + "season" : 1, + "tvshowid" : 2 + }, + { + "userrating" : 0, + "thumbnail" : "", + "episode" : 49, + "playcount" : 0, + "label" : "Season 1", + "seasonid" : 9, + "watchedepisodes" : 2, + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "season" : 1, + "showtitle" : "4 Stjerners Middag", + "tvshowid" : 3 + }, + { + "episode" : 41, + "playcount" : 0, + "label" : "Season 2", + "userrating" : 0, + "thumbnail" : "", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/" + }, + "seasonid" : 10, + "watchedepisodes" : 0, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshowid" : 3, + "season" : 2, + "showtitle" : "4 Stjerners Middag" + }, + { + "playcount" : 0, + "episode" : 20, + "label" : "Season 3", + "userrating" : 0, + "thumbnail" : "", + "art" : { + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "watchedepisodes" : 0, + "seasonid" : 11, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tvshowid" : 3, + "showtitle" : "4 Stjerners Middag", + "season" : 3 + }, + { + "episode" : 8, + "playcount" : 1, + "label" : "Season 1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f301824-1-4.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/" + }, + "watchedepisodes" : 8, + "seasonid" : 3, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "tvshowid" : 1, + "showtitle" : "11.22.63", + "season" : 1 + }, + { + "tvshowid" : 137, + "showtitle" : "The A-Team", + "season" : 1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "art" : { + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "watchedepisodes" : 0, + "seasonid" : 553, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-1.jpg/", + "userrating" : 0, + "label" : "Season 1", + "playcount" : 0, + "episode" : 13 + }, + { + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "playcount" : 0, + "label" : "Season 2", + "episode" : 23, + "seasonid" : 554, + "watchedepisodes" : 0, + "art" : { + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-2.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "showtitle" : "The A-Team", + "season" : 2, + "tvshowid" : 137 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "showtitle" : "The A-Team", + "season" : 3, + "tvshowid" : 137, + "episode" : 25, + "playcount" : 0, + "label" : "Season 3", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "userrating" : 0, + "seasonid" : 555, + "watchedepisodes" : 0, + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-3.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-3.jpg/" + } + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "showtitle" : "The A-Team", + "season" : 4, + "tvshowid" : 137, + "episode" : 23, + "playcount" : 0, + "label" : "Season 4", + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "watchedepisodes" : 0, + "seasonid" : 556, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-4.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f77904-4.jpg/" + } + }, + { + "label" : "Season 5", + "playcount" : 0, + "episode" : 13, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "userrating" : 0, + "seasonid" : 557, + "watchedepisodes" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f77904-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "season" : 5, + "showtitle" : "The A-Team", + "tvshowid" : 137 + }, + { + "watchedepisodes" : 9, + "seasonid" : 14, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-1-2.jpg/", + "playcount" : 0, + "episode" : 22, + "label" : "Season 1", + "season" : 1, + "showtitle" : "According to Jim", + "tvshowid" : 4, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + { + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/" + }, + "seasonid" : 15, + "watchedepisodes" : 0, + "playcount" : 0, + "label" : "Season 2", + "episode" : 28, + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-2-2.jpg/", + "tvshowid" : 4, + "season" : 2, + "showtitle" : "According to Jim", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + { + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "playcount" : 0, + "label" : "Season 3", + "episode" : 29, + "watchedepisodes" : 0, + "seasonid" : 16, + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-3-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "showtitle" : "According to Jim", + "season" : 3, + "tvshowid" : 4 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season" : 4, + "showtitle" : "According to Jim", + "tvshowid" : 4, + "episode" : 27, + "playcount" : 0, + "label" : "Season 4", + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "watchedepisodes" : 0, + "seasonid" : 17, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-4-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + } + }, + { + "showtitle" : "According to Jim", + "season" : 5, + "tvshowid" : 4, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "seasonid" : 18, + "watchedepisodes" : 0, + "art" : { + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/" + }, + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f3449-5.jpg/", + "label" : "Season 5", + "playcount" : 0, + "episode" : 22 + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "season" : 6, + "showtitle" : "According to Jim", + "tvshowid" : 4, + "playcount" : 0, + "episode" : 18, + "label" : "Season 6", + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "seasonid" : 19, + "watchedepisodes" : 0, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-6-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + } + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshowid" : 4, + "season" : 7, + "showtitle" : "According to Jim", + "episode" : 18, + "playcount" : 0, + "label" : "Season 7", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "userrating" : 0, + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-7-2.jpg/" + }, + "watchedepisodes" : 0, + "seasonid" : 20 + }, + { + "watchedepisodes" : 0, + "seasonid" : 21, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/" + }, + "playcount" : 0, + "episode" : 18, + "label" : "Season 8", + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f75926-8-2.jpg/", + "season" : 8, + "showtitle" : "According to Jim", + "tvshowid" : 4, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "tvshowid" : 138, + "season" : 1, + "showtitle" : "The Adventures of Abney & Teal", + "userrating" : 0, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "episode" : 26, + "playcount" : 0, + "label" : "Season 1", + "art" : { + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-1.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "watchedepisodes" : 0, + "seasonid" : 560 + }, + { + "season" : 2, + "showtitle" : "The Adventures of Abney & Teal", + "tvshowid" : 138, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "seasonid" : 561, + "watchedepisodes" : 0, + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "season.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "season.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasonswide%2f252308-2.jpg/" + }, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fseasons%2f252308-2.jpg/", + "userrating" : 0, + "playcount" : 0, + "label" : "Season 2", + "episode" : 26 + }, + { + "episode" : 1, + "playcount" : 1, + "label" : "Season 3", + "userrating" : 0, + "thumbnail" : "", + "watchedepisodes" : 1, + "seasonid" : 24, + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f104171-1.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f104171-1.jpg/", + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f104171-g.jpg/" + }, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f104171-1.jpg/", + "season" : 3, + "showtitle" : "Air Ways", + "tvshowid" : 5 + }, + { + "art" : { + "tvshow.banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/", + "tvshow.poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/" + }, + "watchedepisodes" : 0, + "seasonid" : 27, + "thumbnail" : "", + "userrating" : 0, + "episode" : 10, + "playcount" : 0, + "label" : "Season 1", + "tvshowid" : 6, + "showtitle" : "American Colony Meet the Hutterites", + "season" : 1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/" + }, + { + "tvshowid" : 7, + "showtitle" : "Amish: Out Of Order", + "season" : 1, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "art" : { + "tvshow.fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "seasonid" : 30, + "watchedepisodes" : 0, + "userrating" : 0, + "thumbnail" : "", + "episode" : 9, + "playcount" : 0, + "label" : "Season 1" + } + ] + } +} diff --git a/app/src/testUtils/assets/VideoLibrary.GetTVShows.json b/app/src/testUtils/assets/VideoLibrary.GetTVShows.json new file mode 100644 index 0000000..83b2d05 --- /dev/null +++ b/app/src/testUtils/assets/VideoLibrary.GetTVShows.json @@ -0,0 +1,691 @@ +{ + "id" : "libTVShows", + "jsonrpc" : "2.0", + "result" : { + "tvshows" : [ + { + "tvshowid" : 2, + "sorttitle" : "", + "season" : 1, + "lastplayed" : "2017-02-06 16:56:12", + "runtime" : 3600, + "uniqueid" : { + "unknown" : "260473" + }, + "imdbnumber" : "260473", + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f260473-g.jpg/" + }, + "originaltitle" : "", + "year" : 2012, + "title" : "3", + "mpaa" : "", + "userrating" : 0, + "studio" : [ + "CBS" + ], + "rating" : 10, + "fanart" : "", + "tag" : [], + "premiered" : "2012-07-26", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/3 (2012)/", + "cast" : [], + "genre" : [ + "Reality" + ], + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/260473/all/en.zip", + "watchedepisodes" : 3, + "dateadded" : "2016-08-26 09:16:59", + "label" : "3", + "ratings" : { + "default" : { + "votes" : 0, + "rating" : 10, + "default" : true + } + }, + "episode" : 8, + "plot" : "Instead of competing against each other, the women searching for love in this relationship series are there to share the experience with one another, offering emotional support during the dating and decision-making process as they whittle down the group of nearly 100 men they start out with and each tries to find a good match. The women -- 29-year-old entrepreneur April Francis, 34-year-old pharmaceutical sales rep Rachel Harley and 24-year-old model Libby Lopez -- bring different backgrounds and experiences to the table, but their common goal unites them as they embark on their journey. Alex Miranda hosts.", + "playcount" : 0, + "votes" : "0", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f260473-1.jpg/" + }, + { + "cast" : [], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/4-stjerners middag (2010)/", + "premiered" : "2010-01-25", + "watchedepisodes" : 2, + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/146391/all/en.zip", + "genre" : [ + "Reality" + ], + "dateadded" : "2016-08-26 09:16:59", + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 10 + } + }, + "episode" : 110, + "playcount" : 0, + "label" : "4 Stjerners Middag", + "plot" : "Danish version of the British \"Come Dine With Me\". Every week four celebrities invites each other home for dinner, one by one. The goal is to make a perfect evening for the three guests, and collect as many points as possible, to be the host of the week. The host picks out the three course dinner and is responsible for buying groceries and preparing the meal.", + "studio" : [ + "TVNorge" + ], + "rating" : 10, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/", + "tag" : [], + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f146391-2.jpg/", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f146391-2.jpg/" + }, + "imdbnumber" : "146391", + "title" : "4 Stjerners Middag", + "year" : 2010, + "originaltitle" : "", + "userrating" : 0, + "mpaa" : "", + "tvshowid" : 3, + "season" : 3, + "sorttitle" : "", + "lastplayed" : "2017-02-06 17:02:53", + "uniqueid" : { + "unknown" : "146391" + }, + "runtime" : 3600 + }, + { + "title" : "11.22.63", + "year" : 2016, + "originaltitle" : "", + "mpaa" : "TV-MA", + "userrating" : 0, + "imdbnumber" : "301824", + "art" : { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f301824-g.jpg/" + }, + "lastplayed" : "2017-02-28 11:14:40", + "runtime" : 3000, + "uniqueid" : { + "unknown" : "301824" + }, + "tvshowid" : 1, + "sorttitle" : "", + "season" : 1, + "dateadded" : "2016-08-26 09:17:01", + "ratings" : { + "default" : { + "votes" : 31, + "rating" : 7.69999980926514, + "default" : true + } + }, + "episode" : 8, + "label" : "11.22.63", + "playcount" : 1, + "plot" : "A teacher discovers a time portal that leads to October 21st, 1960 and goes on a quest to try and prevent the assassination of John F. Kennedy, which is complicated by the presence of Lee Harvey Oswald and the fact that he's falling in love with the past itself.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f301824-8.jpg/", + "votes" : "31", + "premiered" : "2016-02-15", + "cast" : [ + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fromance%2f.actors%2fJames_Franco.jpg/", + "order" : 0, + "name" : "James Franco", + "role" : "Jake Epping" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358603.jpg/", + "order" : 1, + "role" : "Sadie Dunhill", + "name" : "Sarah Gadon" + }, + { + "order" : 2, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fChris_Cooper.jpg/", + "role" : "Al Templeton", + "name" : "Chris Cooper" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f380762.jpg/", + "order" : 3, + "role" : "Harry Dunning", + "name" : "Leon Rippy" + }, + { + "name" : "Kevin J. O'Connor", + "role" : "Yellow Card Man", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f370399.jpg/", + "order" : 4 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358610.jpg/", + "order" : 5, + "role" : "Bill Turcotte", + "name" : "George MacKay" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358609.jpg/", + "order" : 6, + "role" : "Lee Harvey Oswald", + "name" : "Daniel Webber" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358608.jpg/", + "order" : 7, + "role" : "Johnny Clayton", + "name" : "T.R. Knight" + }, + { + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358607.jpg/", + "role" : "Marquerite Oswald", + "name" : "Cherry Jones" + }, + { + "order" : 9, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358606.jpg/", + "name" : "Lucy Fry", + "role" : "Marina Oswald" + }, + { + "role" : "Frank Dunning", + "name" : "Josh Duhamel", + "order" : 10, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f358602.jpg/" + }, + { + "order" : 22, + "role" : "George de Mohrenschildt", + "name" : "Johny Coyne" + }, + { + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fdrama%2f.actors%2fNick_Searcy.jpg/", + "order" : 23, + "role" : "Deke Simmons", + "name" : "Nick Searcy" + } + ], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/11_22_63 (2016)/", + "genre" : [ + "Drama", + "Mini-Series", + "Science-Fiction" + ], + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/301824/all/en.zip", + "watchedepisodes" : 8, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f301824-10.jpg/", + "tag" : [], + "studio" : [ + "Hulu" + ], + "rating" : 7.69999980926514 + }, + { + "tvshowid" : 137, + "sorttitle" : "", + "season" : 5, + "lastplayed" : "", + "runtime" : 2700, + "uniqueid" : { + "unknown" : "77904" + }, + "imdbnumber" : "77904", + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f77904-g9.jpg/" + }, + "year" : 1983, + "originaltitle" : "", + "title" : "The A-Team", + "mpaa" : "TV-PG", + "userrating" : 0, + "studio" : [ + "NBC" + ], + "rating" : 7.80000019073486, + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f77904-5.jpg/", + "tag" : [], + "premiered" : "1983-01-23", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The A-Team (1983)/", + "cast" : [ + { + "name" : "George Peppard", + "role" : "Col. John \"Hannibal\" Smith", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f82360.jpg/", + "order" : 0 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59826.jpg/", + "order" : 1, + "name" : "Dirk Benedict", + "role" : "Lt. Templeton \"Faceman\" Peck" + }, + { + "name" : "Mr. T", + "role" : "Sgt. Bosco Albert \"B.A.\" Baracus", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59825.jpg/", + "order" : 2 + }, + { + "order" : 3, + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fscifi%2f.actors%2fDwight_Schultz.jpg/", + "role" : "Capt. H.M. \"Howling Mad\" Murdock", + "name" : "Dwight Schultz" + }, + { + "order" : 4, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59831.jpg/", + "role" : "Tawnia Baker", + "name" : "Marla Heasley" + }, + { + "name" : "Melinda Culea", + "role" : "Amy Amanda 'Triple A' Allen", + "order" : 5, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59827.jpg/" + }, + { + "name" : "William Lucking", + "role" : "Col. Lynch", + "order" : 6, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59836.jpg/" + }, + { + "role" : "Col. Roderick Decker", + "name" : "Lance LeGault", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59828.jpg/", + "order" : 7 + }, + { + "name" : "Eddie Velez", + "role" : "Frankie \"Dishpan Man\" Santana", + "order" : 8, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59838.jpg/" + }, + { + "role" : "Col. Briggs", + "name" : "Charles Napier", + "thumbnail" : "image://nfs%3a%2f%2f192.168.2.3%2f%2fvar%2fdata%2fmedia%2fvideos%2fmovies%2fcomedy%2f.actors%2fCharles_Napier.jpg/", + "order" : 9 + }, + { + "role" : "Capt. Crane", + "name" : "Carl Franklin", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f59830.jpg/", + "order" : 10 + }, + { + "role" : "Gen. Hunt Stockwell", + "name" : "Robert Vaughn", + "order" : 19 + } + ], + "genre" : [ + "Action", + "Adventure" + ], + "watchedepisodes" : 0, + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/77904/all/en.zip", + "dateadded" : "2016-08-26 09:16:58", + "episode" : 97, + "ratings" : { + "default" : { + "votes" : 45, + "rating" : 7.80000019073486, + "default" : true + } + }, + "label" : "The A-Team", + "playcount" : 0, + "plot" : "The A-Team is about a group of ex-United States Army Special Forces personnel who work as soldiers of fortune, while on the run from the Army after being branded as war criminals for a crime they didn't commit.", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f77904-3.jpg/", + "votes" : "45" + }, + { + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f3449-g.jpg/" + }, + "imdbnumber" : "75926", + "userrating" : 0, + "mpaa" : "TV-PG", + "year" : 2001, + "title" : "According to Jim", + "originaltitle" : "", + "sorttitle" : "", + "season" : 8, + "tvshowid" : 4, + "uniqueid" : { + "unknown" : "75926" + }, + "runtime" : 1800, + "lastplayed" : "2017-02-28 12:18:10", + "watchedepisodes" : 9, + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/75926/all/en.zip", + "genre" : [ + "Comedy" + ], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/According to Jim (2001)/", + "cast" : [ + { + "name" : "James Belushi", + "role" : "Jim", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41995.jpg/", + "order" : 0 + }, + { + "order" : 1, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41994.jpg/", + "role" : "Cheryl", + "name" : "Courtney Thorne-Smith" + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41992.jpg/", + "order" : 2, + "name" : "Kimberly Williams-Paisley", + "role" : "Dana" + }, + { + "role" : "Andy", + "name" : "Larry Joe Campbell", + "order" : 3, + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41993.jpg/" + }, + { + "role" : "Ruby", + "name" : "Taylor Atelian", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41991.jpg/", + "order" : 4 + }, + { + "name" : "Conner Rayburn", + "role" : "Kyle", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41990.jpg/", + "order" : 5 + }, + { + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2factors%2f41989.jpg/", + "order" : 6, + "role" : "Gracie", + "name" : "Billi Bruno" + } + ], + "premiered" : "2001-10-03", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f75926-1.jpg/", + "votes" : "34", + "label" : "According to Jim", + "ratings" : { + "default" : { + "votes" : 34, + "default" : true, + "rating" : 8 + } + }, + "playcount" : 0, + "episode" : 182, + "plot" : "Jim is an abrasive but lovable suburban father. Much like his real life counterpart, Jim's character is noted as a fan of Blues music, as well as the Chicago Blackhawks, Chicago Bulls, Chicago Bears, and the Chicago Cubs. He's married to a gorgeous woman, Cheryl, and raises his five children – Ruby, Gracie, Kyle, and twins, Gordan and Jonathan – in a big house. Everything is perfect for Jim, if it wasn't for the messy situations he gets himself into and his laziness, which often makes him search for alternative ways of doing things with less effort. Of course, having his wife's siblings hanging out at his house all the time is no help. While Andy might be one of his best friends, Dana often teams up with Cheryl against Jim.", + "dateadded" : "2016-08-26 09:16:59", + "rating" : 8, + "studio" : [ + "ABC (US)" + ], + "tag" : [], + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f75926-1.jpg/" + }, + { + "watchedepisodes" : 0, + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/252308/all/en.zip", + "genre" : [ + "Animation", + "Children" + ], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/The Adventures of Abney & Teal (2011)/", + "cast" : [], + "premiered" : "2011-09-26", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "votes" : "1", + "episode" : 52, + "ratings" : { + "default" : { + "votes" : 1, + "rating" : 9, + "default" : true + } + }, + "plot" : "Animated adventures of two friends who live on an island in the middle of a lake, in the middle of a park, in the middle of the big city.", + "playcount" : 0, + "label" : "The Adventures of Abney & Teal", + "dateadded" : "2016-08-26 09:16:57", + "rating" : 9, + "studio" : [ + "CBeebies" + ], + "tag" : [], + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f252308-1.jpg/", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f252308-4.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f252308-g3.jpg/" + }, + "imdbnumber" : "252308", + "userrating" : 0, + "mpaa" : "TV-Y", + "year" : 2011, + "title" : "The Adventures of Abney & Teal", + "originaltitle" : "", + "season" : 2, + "sorttitle" : "", + "tvshowid" : 138, + "uniqueid" : { + "unknown" : "252308" + }, + "runtime" : 660, + "lastplayed" : "" + }, + { + "tag" : [], + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f104171-1.jpg/", + "rating" : 3, + "studio" : [ + "Seven Network" + ], + "episode" : 1, + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 3 + } + }, + "label" : "Air Ways", + "plot" : "Follow the ups and downs of travel on Tiger Airways as viewers get an unprecedented look into the day-to-day running of a budget airline in Australia. A cancelled flight causes chaos, staff witness an unexpected proposal, a baggage problem riles a mum's temper, and a sleep-deprived teenager awakens to a rude shock.\r\nNarrated by Corinne Grant", + "playcount" : 1, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f104171-1.jpg/", + "dateadded" : "2016-08-26 09:16:57", + "genre" : [ + "Reality" + ], + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/104171/all/en.zip", + "watchedepisodes" : 1, + "premiered" : "2009-07-21", + "cast" : [], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Airways (2009)/", + "runtime" : 1800, + "uniqueid" : { + "unknown" : "104171" + }, + "lastplayed" : "2017-02-06 16:41:56", + "sorttitle" : "", + "season" : 1, + "tvshowid" : 5, + "mpaa" : "TV-PG", + "userrating" : 0, + "originaltitle" : "", + "year" : 2009, + "title" : "Air Ways", + "imdbnumber" : "104171", + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f104171-1.jpg/", + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f104171-1.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f104171-g.jpg/" + } + }, + { + "sorttitle" : "", + "season" : 0, + "tvshowid" : 127, + "runtime" : 0, + "uniqueid" : { + "unknown" : "278782" + }, + "lastplayed" : "", + "imdbnumber" : "278782", + "art" : { + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f278782-1.jpg/" + }, + "mpaa" : "", + "userrating" : 0, + "year" : 1969, + "originaltitle" : "", + "title" : "Al Jazeera Special Series", + "rating" : 10, + "studio" : [], + "tag" : [], + "fanart" : "", + "genre" : [], + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/278782/all/en.zip", + "watchedepisodes" : 0, + "premiered" : "1969-12-31", + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Special Series (2016)/", + "cast" : [], + "ratings" : { + "default" : { + "votes" : 1, + "rating" : 10, + "default" : true + } + }, + "episode" : 0, + "label" : "Al Jazeera Special Series", + "plot" : "", + "playcount" : 1, + "votes" : "1", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f278782-1.jpg/", + "dateadded" : "" + }, + { + "originaltitle" : "", + "year" : 2012, + "title" : "American Colony Meet the Hutterites", + "userrating" : 0, + "mpaa" : "", + "art" : { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "poster" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "banner" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fgraphical%2f259064-g.jpg/" + }, + "imdbnumber" : "259064", + "lastplayed" : "", + "uniqueid" : { + "unknown" : "259064" + }, + "runtime" : 1800, + "tvshowid" : 6, + "sorttitle" : "", + "season" : 1, + "dateadded" : "2016-08-26 09:16:57", + "thumbnail" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2fposters%2f259064-1.jpg/", + "votes" : "1", + "plot" : "Meet the Hutterites—a small religious colony in rural Montana who holds desperately to their sacred traditions while fighting the modern temptations of the outside world. King Colony is made up of 59 people and they are almost all related. This family lives together, works together, and worships God together, 7 days a week, 365 days a year, for their entire lives. And, like any family, this one doesn’t always agree. Most of the colony is holding tight to the age-old traditions of their ancestors, while others are flirting with modern society. Some feel that bringing modern technology, education, and ideas into the colony will only help it, while others fear that this modern way of thinking threatens their very existence. We follow the men, the women, the young, and the old, as they strive to live as proper Hutterites. Some will succeed, some will fail, and everyone will have a choice to make. This is the very first glimpse into the world of the Hutterites.", + "ratings" : { + "default" : { + "votes" : 1, + "default" : true, + "rating" : 1 + } + }, + "label" : "American Colony Meet the Hutterites", + "episode" : 10, + "playcount" : 0, + "cast" : [], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/American Colony: Meet the Hutterites (2012)/", + "premiered" : "2012-05-29", + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/259064/all/en.zip", + "watchedepisodes" : 0, + "genre" : [ + "Documentary" + ], + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f259064-1.jpg/", + "tag" : [], + "studio" : [ + "National Geographic" + ], + "rating" : 1 + }, + { + "runtime" : 3600, + "uniqueid" : { + "unknown" : "258525" + }, + "lastplayed" : "", + "season" : 1, + "sorttitle" : "", + "tvshowid" : 7, + "mpaa" : "TV-PG", + "userrating" : 0, + "year" : 2012, + "originaltitle" : "", + "title" : "Amish: Out Of Order", + "imdbnumber" : "258525", + "art" : { + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/" + }, + "tag" : [], + "fanart" : "image://http%3a%2f%2fthetvdb.com%2fbanners%2ffanart%2foriginal%2f258525-1.jpg/", + "rating" : 8.5, + "studio" : [ + "National Geographic" + ], + "label" : "Amish: Out Of Order", + "ratings" : { + "default" : { + "rating" : 8.5, + "default" : true, + "votes" : 0 + } + }, + "plot" : "It takes a lot to leave the only life you’ve ever known—for one you’ve been told will lead you straight to hell. And with little possibility of normal contact with your family ever again, turning your back on the Amish order is an immense undertaking, and a choice that’s not made without tremendous consideration. In the new ten-part series Amish: Out of Order, follow the trials and tribulations of individuals who have made the decision to leave the Amish community behind. Due to their religious beliefs, most Amish refuse to be photographed or videotaped—even ex-Amish risk permanent shunning by their family and community for appearing on camera. The ex-Amish in this program accept that risk.", + "playcount" : 0, + "episode" : 9, + "thumbnail" : "", + "votes" : "0", + "dateadded" : "2016-08-26 09:16:59", + "genre" : [ + "Documentary", + "Reality" + ], + "watchedepisodes" : 0, + "episodeguide" : "http://thetvdb.com/api/1D62F2F90030C444/series/258525/all/en.zip", + "premiered" : "2012-04-24", + "cast" : [], + "file" : "/Users/martijn/Projects/dummymediafiles/media/tvshows/Amish: Out of Order (2012)/" + } + ], + "limits" : { + "start" : 0, + "total" : 177, + "end" : 10 + } + } +} diff --git a/app/src/testUtils/java/org/xbmc/kore/testutils/Database.java b/app/src/testUtils/java/org/xbmc/kore/testutils/Database.java index 86a290f..2ae1dda 100644 --- a/app/src/testUtils/java/org/xbmc/kore/testutils/Database.java +++ b/app/src/testUtils/java/org/xbmc/kore/testutils/Database.java @@ -24,6 +24,7 @@ import org.xbmc.kore.host.HostInfo; import org.xbmc.kore.host.HostManager; import org.xbmc.kore.jsonrpc.ApiException; import org.xbmc.kore.jsonrpc.ApiList; +import org.xbmc.kore.jsonrpc.HostConnection; import org.xbmc.kore.jsonrpc.method.AudioLibrary; import org.xbmc.kore.jsonrpc.method.VideoLibrary; import org.xbmc.kore.jsonrpc.type.AudioType; @@ -31,6 +32,8 @@ import org.xbmc.kore.jsonrpc.type.LibraryType; import org.xbmc.kore.jsonrpc.type.VideoType; import org.xbmc.kore.provider.MediaContract; import org.xbmc.kore.service.library.SyncMusic; +import org.xbmc.kore.service.library.SyncMusicVideos; +import org.xbmc.kore.service.library.SyncTVShows; import org.xbmc.kore.service.library.SyncUtils; import org.xbmc.kore.utils.LogUtils; @@ -40,17 +43,20 @@ import java.util.ArrayList; public class Database { public static final String TAG = LogUtils.makeLogTag(Database.class); - public static HostInfo fill(Context context, ContentResolver contentResolver) throws ApiException, IOException { - HostInfo hostInfo = addHost(context); - + public static HostInfo fill(HostInfo hostInfo, Context context, ContentResolver contentResolver) throws ApiException, IOException { SyncMusic syncMusic = new SyncMusic(hostInfo.getId(), null); - insertMovies(context, contentResolver, hostInfo.getId()); insertArtists(context, contentResolver, syncMusic); insertGenres(context, contentResolver, syncMusic); insertAlbums(context, contentResolver, syncMusic); insertSongs(context, contentResolver, syncMusic); + SyncTVShows syncTVShows = new SyncTVShows(hostInfo.getId(), null); + insertTVShows(context, contentResolver, syncTVShows); + + SyncMusicVideos syncMusicVideos = new SyncMusicVideos(hostInfo.getId(), null); + insertMusicVideos(context, contentResolver, syncMusicVideos); + return hostInfo; } @@ -58,15 +64,24 @@ public class Database { contentResolver.delete(MediaContract.Hosts.buildHostUri(hostInfo.getId()), null, null); } - private static HostInfo addHost(Context context) { - return HostManager.getInstance(context).addHost("TestHost", "127.0.0.1", 1, 80, 9090, null, - null, "52:54:00:12:35:02", 9, false, 9777, - HostInfo.DEFAULT_KODI_VERSION_MAJOR, HostInfo.DEFAULT_KODI_VERSION_MINOR, - HostInfo.DEFAULT_KODI_VERSION_REVISION, HostInfo.DEFAULT_KODI_VERSION_TAG, + public static HostInfo addHost(Context context) { + return addHost(context, "127.0.0.1", HostConnection.PROTOCOL_TCP, + HostInfo.DEFAULT_HTTP_PORT, HostInfo.DEFAULT_TCP_PORT); + + } + + public static HostInfo addHost(Context context, String hostname, int protocol, int httpPort, int tcpPort) { + return HostManager.getInstance(context).addHost("TestHost", hostname, protocol, httpPort, + tcpPort, null, null, "52:54:00:12:35:02", 9, + false, HostInfo.DEFAULT_EVENT_SERVER_PORT, + HostInfo.DEFAULT_KODI_VERSION_MAJOR, + HostInfo.DEFAULT_KODI_VERSION_MINOR, + HostInfo.DEFAULT_KODI_VERSION_REVISION, + HostInfo.DEFAULT_KODI_VERSION_TAG, false); } - public static void insertMovies(Context context, ContentResolver contentResolver, int hostId) + private static void insertMovies(Context context, ContentResolver contentResolver, int hostId) throws ApiException, IOException { VideoLibrary.GetMovies getMovies = new VideoLibrary.GetMovies(); String result = FileUtils.readFile(context, "Video.Details.Movie.json"); @@ -131,4 +146,34 @@ public class Database { syncMusic.insertSongsItems(songList, contentResolver); } + + private static void insertTVShows(Context context, ContentResolver contentResolver, SyncTVShows syncTVShows) + throws ApiException, IOException { + VideoLibrary.GetTVShows getTVShows = new VideoLibrary.GetTVShows(); + String result = FileUtils.readFile(context, "VideoLibrary.GetTVShows.json"); + ArrayList tvShowList = (ArrayList) getTVShows.resultFromJson(result).items; + + syncTVShows.insertTVShows(tvShowList, contentResolver); + + for ( VideoType.DetailsTVShow tvShow : tvShowList ) { + VideoLibrary.GetSeasons getSeasons = new VideoLibrary.GetSeasons(tvShow.tvshowid); + result = FileUtils.readFile(context, "VideoLibrary.GetSeasons.json"); + ArrayList detailsSeasons = (ArrayList) getSeasons.resultFromJson(result); + syncTVShows.insertSeason(tvShow.tvshowid, detailsSeasons, contentResolver); + } + + VideoLibrary.GetEpisodes getEpisodes = new VideoLibrary.GetEpisodes(0); + result = FileUtils.readFile(context, "VideoLibrary.GetEpisodes.json"); + ArrayList detailsEpisodes = (ArrayList) getEpisodes.resultFromJson(result); + syncTVShows.insertEpisodes(detailsEpisodes, contentResolver); + } + + private static void insertMusicVideos(Context context, ContentResolver contentResolver, SyncMusicVideos syncMusicVideos) + throws ApiException, IOException { + VideoLibrary.GetMusicVideos getMusicVideos = new VideoLibrary.GetMusicVideos(); + String result = FileUtils.readFile(context, "VideoLibrary.GetMusicVideos.json"); + ArrayList musicVideoList = (ArrayList) getMusicVideos.resultFromJson(result); + + syncMusicVideos.insertMusicVideos(musicVideoList, contentResolver); + } } diff --git a/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/MockTcpServer.java b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/MockTcpServer.java index 0165576..7b86c95 100644 --- a/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/MockTcpServer.java +++ b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/MockTcpServer.java @@ -48,7 +48,6 @@ public class MockTcpServer { private boolean started; private ExecutorService executor; private int port = -1; - private StringBuffer request; private InetSocketAddress inetSocketAddress; private final Set openClientSockets = @@ -56,6 +55,10 @@ public class MockTcpServer { private final TcpServerConnectionHandler connectionHandler; + // TODO + // Enhance handler to handle multiple connections simultaneously. It can now handle one + // connection at a time, which makes the current setup of the MockTcpServer (with threading) + // overkill. public interface TcpServerConnectionHandler { /** * Processes received input @@ -131,7 +134,6 @@ public class MockTcpServer { //Socket closed return; } - openClientSockets.add(socket); serveConnection(socket); } @@ -185,14 +187,9 @@ public class MockTcpServer { private void handleInput() throws IOException { InputStreamReader in = new InputStreamReader(socket.getInputStream()); - request = new StringBuffer(); int i; while ((i = in.read()) != -1) { - request.append((char) i); - - synchronized (connectionHandler) { - connectionHandler.processInput((char) i); - } + connectionHandler.processInput((char) i); } socket.close(); diff --git a/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/AddonsHandler.java b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/AddonsHandler.java new file mode 100644 index 0000000..2a42070 --- /dev/null +++ b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/AddonsHandler.java @@ -0,0 +1,80 @@ +/* + * Copyright 2016 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.testutils.tcpserver.handlers; + +import android.content.Context; + +import com.fasterxml.jackson.databind.node.ObjectNode; + +import org.xbmc.kore.testutils.FileUtils; +import org.xbmc.kore.testutils.tcpserver.handlers.jsonrpc.JsonResponse; +import org.xbmc.kore.testutils.tcpserver.handlers.jsonrpc.response.methods.Addons; +import org.xbmc.kore.utils.LogUtils; + +import java.io.IOException; +import java.util.ArrayList; + +/** + * Simulates Addons JSON-RPC API + */ +public class AddonsHandler implements JSONConnectionHandlerManager.ConnectionHandler { + private static final String TAG = LogUtils.makeLogTag(AddonsHandler.class); + + private static final String ID_NODE = "id"; + + private Context context; + + public AddonsHandler(Context context) { + this.context = context; + } + + @Override + public ArrayList getNotification() { + return null; + } + + @Override + public void reset() { + } + + @Override + public String[] getType() { + return new String[]{Addons.GetAddons.METHOD_NAME}; + } + + @Override + public ArrayList getResponse(String method, ObjectNode jsonRequest) { + ArrayList jsonResponses = new ArrayList<>(); + + int methodId = jsonRequest.get(ID_NODE).asInt(-1); + + switch (method) { + case Addons.GetAddons.METHOD_NAME: + try { + String result = FileUtils.readFile(context, "Addons.GetAddons.json"); + Addons.GetAddons getAddons = new Addons.GetAddons(methodId, result); + jsonResponses.add(getAddons); + } catch (IOException e) { + LogUtils.LOGW(TAG, "Error creating GetAddons response: " + e.getMessage()); + } + break; + default: + LogUtils.LOGD(TAG, "method: " + method + ", not implemented"); + } + return jsonResponses; + } +} diff --git a/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/JsonResponse.java b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/JsonResponse.java index 503785d..055383d 100644 --- a/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/JsonResponse.java +++ b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/JsonResponse.java @@ -23,6 +23,8 @@ import com.fasterxml.jackson.databind.node.ObjectNode; import org.xbmc.kore.utils.LogUtils; +import java.io.IOException; + public abstract class JsonResponse { private final String TAG = LogUtils.makeLogTag(JsonResponse.class); @@ -52,6 +54,12 @@ public abstract class JsonResponse { jsonResponse.put(ID_NODE, id); } + public JsonResponse(int id, String jsonString) throws IOException { + jsonResponse = (ObjectNode) objectMapper.readTree(jsonString); + jsonResponse.put(JSONRPC_NODE, "2.0"); + jsonResponse.put(ID_NODE, id); + } + protected ObjectNode createObjectNode() { return objectMapper.createObjectNode(); } diff --git a/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/response/methods/Addons.java b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/response/methods/Addons.java new file mode 100644 index 0000000..aedce53 --- /dev/null +++ b/app/src/testUtils/java/org/xbmc/kore/testutils/tcpserver/handlers/jsonrpc/response/methods/Addons.java @@ -0,0 +1,40 @@ +/* + * Copyright 2017 Martijn Brekhof. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.xbmc.kore.testutils.tcpserver.handlers.jsonrpc.response.methods; + +import org.xbmc.kore.testutils.tcpserver.handlers.jsonrpc.JsonResponse; + +import java.io.IOException; + +/** + * Serverside JSON RPC responses in Addons.* + */ +public class Addons { + + /** + * JSON response for Addons.GetAddons request + * + * @return JSON string + */ + public static class GetAddons extends JsonResponse { + public final static String METHOD_NAME = "Addons.GetAddons"; + + public GetAddons(int id, String jsonString) throws IOException { + super(id, jsonString); + } + } +} diff --git a/doc/diagrams/sequence/org.xbmc.kore.ui.basedraweractivity.puml b/doc/diagrams/sequence/org.xbmc.kore.ui.basedraweractivity.puml new file mode 100644 index 0000000..ad45341 --- /dev/null +++ b/doc/diagrams/sequence/org.xbmc.kore.ui.basedraweractivity.puml @@ -0,0 +1,48 @@ +@startuml + + +Actor Activity +participant "BaseMediaActivity" as A +participant "MediaActivity" as B + +Activity -> A: onCreate +activate A +A -> A: set theme +A -> A: setup navigation drawer +group setup action bar +alt new activity +A -> B: getActionBarTitle() +activate B +B -> A: +deactivate B +note over A: set home icon to hamburger icon +else restore action bar +note over A: get home icon and action bar title\nfrom saved instance +end +A -> A: updateActionBar +alt no fragment in layout (new activity) +A -> B: createFragment() +activate B +B -> A: +deactivate B +A -> A: add fragment +end +A -> Activity +deactivate A +... +Activity -> A: onCreateOptionsMenu +activate A +note over A: inflate generic menu items +A -> Activity: +deactivate A +... +note over B: user selects media item +B -> A: showFragment() +activate B +activate A +note over A: sets up the shared element transition\nand updates the dataholder +A -> A: replace current fragment\nwith new fragment +A -> B +deactivate A +deactivate B +@enduml \ No newline at end of file diff --git a/tools/json/getaddons.pl b/tools/json/getaddons.pl new file mode 100755 index 0000000..81ba258 --- /dev/null +++ b/tools/json/getaddons.pl @@ -0,0 +1,53 @@ +#!/usr/bin/perl +# +# Copyright 2017 Martijn Brekhof. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +use strict; +use warnings; + +use Types::Serialiser; +use JsonTools qw(sendJsonRequest writeJsonFile); + +sub getAddons() { + my $jsonrequest = { + "jsonrpc" => "2.0", + "method" => "Addons.GetAddons", + "params" => { + "properties" => [ + "name", + "version", + "summary", + "description", + "path", + "author", + "thumbnail", + "disclaimer", + "fanart", + "dependencies", + "broken", + "extrainfo", + "rating", + "enabled", + "installed" + ], + }, + "id" => "libAddons" + }; + + return sendJsonRequest("http://127.0.0.1:8080/jsonrpc", $jsonrequest); +} + +writeJsonFile("Addons.GetAddons.json", getAddons); diff --git a/tools/json/getmusicvideos.pl b/tools/json/getmusicvideos.pl new file mode 100755 index 0000000..3692cfb --- /dev/null +++ b/tools/json/getmusicvideos.pl @@ -0,0 +1,63 @@ +#!/usr/bin/perl +# +# Copyright 2017 Martijn Brekhof. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +use strict; +use warnings; + +use Types::Serialiser; +use JsonTools qw(sendJsonRequest writeJsonFile); + +sub getMusicVideos() { + my $jsonrequest = { + "jsonrpc" => "2.0", + "method" => "VideoLibrary.GetMusicVideos", + "params" => { + "limits" => { "start" => 0, "end" => 10 }, + "properties" => [ + "title", + "playcount", + "runtime", + "director", + "studio", + "year", + "plot", + "album", + "artist", + "genre", + "track", + "streamdetails", + "lastplayed", + "fanart", + "thumbnail", + "file", + "resume", + "dateadded", + "tag", + "art", + "rating", + "userrating", + "premiered" + ], + "sort" => { "order" => "ascending", "method" => "label", "ignorearticle" => Types::Serialiser::true } + }, + "id" => "libMovies" + }; + + return sendJsonRequest("http://127.0.0.1:8080/jsonrpc", $jsonrequest); +} + +writeJsonFile("VideoLibrary.GetMusicVideos.json", getMusicVideos); diff --git a/tools/json/gettvshows.pl b/tools/json/gettvshows.pl new file mode 100755 index 0000000..8a21ce6 --- /dev/null +++ b/tools/json/gettvshows.pl @@ -0,0 +1,181 @@ +#!/usr/bin/perl +# +# Copyright 2017 Martijn Brekhof. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +use strict; +use warnings; + +use Types::Serialiser; +use JsonTools qw(sendJsonRequest writeJsonFile); + +sub getTVShows() { + my $jsonrequest = { + "jsonrpc" => "2.0", + "method" => "VideoLibrary.GetTVShows", + "params" => { + "limits" => { "start" => 0, "end" => 10 }, + "properties" => [ + "title", + "genre", + "year", + "rating", + "plot", + "studio", + "mpaa", + "cast", + "playcount", + "episode", + "imdbnumber", + "premiered", + "votes", + "lastplayed", + "fanart", + "thumbnail", + "file", + "originaltitle", + "sorttitle", + "episodeguide", + "season", + "watchedepisodes", + "dateadded", + "tag", + "art", + "userrating", + "ratings", + "runtime", + "uniqueid" + ], + "sort" => { "order" => "ascending", "method" => "label", "ignorearticle" => Types::Serialiser::true } + }, + "id" => "libTVShows" + }; + + return sendJsonRequest("http://127.0.0.1:8080/jsonrpc", $jsonrequest); +} + + +sub getSeasons($) { + my $tvshowid = shift; + + my $jsonrequest = { + "jsonrpc" => "2.0", + "method" => "VideoLibrary.GetSeasons", + "params" => { + "tvshowid" => $tvshowid, + "properties" => [ + "season", + "showtitle", + "playcount", + "episode", + "fanart", + "thumbnail", + "tvshowid", + "watchedepisodes", + "art", + "userrating" + ], + "sort" => { "order" => "ascending", "method" => "label", "ignorearticle" => Types::Serialiser::true } + }, + "id" => "libTVShowSeasons" + }; + + return sendJsonRequest("http://127.0.0.1:8080/jsonrpc", $jsonrequest); +} + +sub getEpisodes($) { + my $tvshowid = shift; + + my $jsonrequest = { + "jsonrpc" => "2.0", + "method" => "VideoLibrary.GetEpisodes", + "params" => { + "tvshowid" => $tvshowid, + "properties" => [ + "title", + "plot", + "votes", + "rating", + "writer", + "firstaired", + "playcount", + "runtime", + "director", + "productioncode", + "season", + "episode", + "originaltitle", + "showtitle", + "cast", + "streamdetails", + "lastplayed", + "fanart", + "thumbnail", + "file", + "resume", + "tvshowid", + "dateadded", + "uniqueid", + "art", + "specialsortseason", + "specialsortepisode", + "userrating", + "seasonid", + "ratings" + ], + "sort" => { "order" => "ascending", "method" => "label", "ignorearticle" => Types::Serialiser::true } + }, + "id" => "libTVShowEpisodes" + }; + + return sendJsonRequest("http://127.0.0.1:8080/jsonrpc", $jsonrequest); +} + +my $tvshows_list = getTVShows(); + +my $json_seasons; +my $json_episodes; + +for my $tvshow (@{$tvshows_list->{"result"}->{"tvshows"}}) { + my $seasons_list = getSeasons($tvshow->{"tvshowid"}); + + if (! defined $json_seasons) { + $json_seasons = $seasons_list; + } else { + for my $season ( @{$seasons_list->{"result"}->{"seasons"}} ) { + push $json_seasons->{"result"}->{"seasons"}, $season; + } + } + + my $episodes_list = getEpisodes($tvshow->{"tvshowid"}); + + if (! defined $json_episodes) { + $json_episodes = $episodes_list; + } else { + for my $episode ( @{$episodes_list->{"result"}->{"episodes"}} ) { + push $json_episodes->{"result"}->{"episodes"}, $episode; + } + } +} + +writeJsonFile("VideoLibrary.GetTVShows.json", $tvshows_list); + +my $count = length($json_seasons->{"result"}->{"seasons"}); +$json_seasons->{"result"}{"limits"} = {"end" => $count, "start" => 0, "total" => $count}; +writeJsonFile("VideoLibrary.GetSeasons.json", $json_seasons); + +$count = length($json_episodes->{"result"}->{"episodes"}); +$json_seasons->{"result"}{"limits"} = {"end" => $count, "start" => 0, "total" => $count}; +writeJsonFile("VideoLibrary.GetEpisodes.json", $json_episodes);